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

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


    axisY.setProperty(StyleTextPropertiesElement.FontSize, "10pt");
    axisY.setProperty(StyleTextPropertiesElement.FontSizeAsian, "10pt");
    axisY.setProperty(StyleTextPropertiesElement.FontCharsetComplex, "10pt");

    // chart:grid
    ChartGridElement grid = axisY.newChartGridElement();
    grid.setProperty(StyleGraphicPropertiesElement.StrokeColor, "#b3b3b3");
    grid.setChartClassAttribute(ChartClassAttribute.Value.MAJOR.toString());

    // chart:series
    int numSeries = dataSet.getDataSeriesCount();
    Object[] valueCellRange = getValueCellRange();
    Object[] labelCellRange = getLabelCellRange();
View Full Code Here

TOP

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

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.