Package org.odftoolkit.odfdom.dom.element.chart

Examples of org.odftoolkit.odfdom.dom.element.chart.ChartWallElement


      ChartDataPointElement point = series.newChartDataPointElement();
      point.setChartRepeatedAttribute(new Integer(numSeries));
    }

    ChartWallElement wall = plotArea.newChartWallElement();
    wall.setProperty(StyleGraphicPropertiesElement.Stroke, "none");
    wall.setProperty(StyleGraphicPropertiesElement.StrokeColor, "#b3b3b3");
    wall.setProperty(StyleGraphicPropertiesElement.Fill, "none");
    wall.setProperty(StyleGraphicPropertiesElement.FillColor, "#e6e6e6");

    ChartFloorElement floor = plotArea.newChartFloorElement();
    floor.setProperty(StyleGraphicPropertiesElement.Stroke, "none");
    floor.setProperty(StyleGraphicPropertiesElement.StrokeColor, "#b3b3b3");
    floor.setProperty(StyleGraphicPropertiesElement.Fill, "none");
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.chart.ChartWallElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.