Package fr.soleil.comete.definition.widget.properties

Examples of fr.soleil.comete.definition.widget.properties.AxisProperties


        // chartViewer.setChartBackground(new Color(255, 255, 255, 0));
        // chartViewer.setChartMainBackground(new Color(255, 255, 255, 0));

        chartViewer.setHeaderVisible(true);

        xProp = new AxisProperties();
        xProp.setPosition(IChartViewer.HORIZONTAL_ORGY1);
        xProp.setDrawOpposite(true);
        xProp.setAutoScale(false);
        xProp.setScaleMin(DEFAULT_X_MIN_VALUE);
        xProp.setScaleMax(DEFAULT_X_MAX_VALUE);

        y1Prop = new AxisProperties();
        y1Prop.setDrawOpposite(true);
        y1Prop.setAutoScale(false);
        y1Prop.setScaleMin(DEFAULT_Y_MIN_VALUE);
        y1Prop.setScaleMax(DEFAULT_Y_MAX_VALUE);
        y1Prop.setGridVisible(true);
View Full Code Here


        // chartViewer.setChartBackground(new Color(255, 255, 255, 0));
        // chartViewer.setChartMainBackground(new Color(255, 255, 255, 0));

        chartViewer.setHeaderVisible(true);

        xProp = new AxisProperties();
        xProp.setPosition(IChartViewer.HORIZONTAL_ORGY1);
        xProp.setDrawOpposite(true);
        xProp.setAutoScale(false);
        xProp.setScaleMin(DEFAULT_X_MIN_VALUE);
        xProp.setScaleMax(DEFAULT_X_MAX_VALUE);

        y1Prop = new AxisProperties();
        y1Prop.setDrawOpposite(true);
        y1Prop.setAutoScale(false);
        y1Prop.setScaleMin(DEFAULT_Y_MIN_VALUE);
        y1Prop.setScaleMax(DEFAULT_Y_MAX_VALUE);
        y1Prop.setGridVisible(true);
View Full Code Here

TOP

Related Classes of fr.soleil.comete.definition.widget.properties.AxisProperties

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.