Package info.monitorenter.gui.chart.labelformatters

Examples of info.monitorenter.gui.chart.labelformatters.LabelFormatterDate


        Chart2D chart = new Chart2D();
       
        IAxis eixoX = chart.getAxisX();
        IAxis eixoY = chart.getAxisY();
       
        eixoX.setFormatter(new LabelFormatterDate(new SimpleDateFormat()));
        eixoX.setAxisTitle(new IAxis.AxisTitle("Data da Consulta"));
       
        eixoY.setAxisTitle(new IAxis.AxisTitle("Medida"));
       
        // Create an ITrace:
View Full Code Here

TOP

Related Classes of info.monitorenter.gui.chart.labelformatters.LabelFormatterDate

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.