Examples of DataAxisProperties


Examples of org.krysalis.jcharts.properties.DataAxisProperties

    ScatterPlotDataSeries scatterPlotDataSeries = new ScatterPlotDataSeries( scatterPlotDataSet,
                                                     "X-Axis Title",
                                                     "Y-Axis Title",
                                                     "Chart Title" );

    DataAxisProperties xAxisProperties= new DataAxisProperties();
    xAxisProperties.setUserDefinedScale( -5, 3 );
    xAxisProperties.setNumItems( 10 );
    xAxisProperties.setRoundToNearest( 0 );

    DataAxisProperties yAxisProperties= new DataAxisProperties();
    yAxisProperties.setUserDefinedScale( -30, 50 );
    yAxisProperties.setNumItems( 10 );
    yAxisProperties.setRoundToNearest( 1 );

    AxisProperties axisProperties = new AxisProperties( xAxisProperties, yAxisProperties );
      ChartProperties chartProperties = new ChartProperties();
    LegendProperties legendProperties = new LegendProperties();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.