Package com.projity.pm.graphic.chart

Examples of com.projity.pm.graphic.chart.TimeChartPanel


    return result;
  }


  protected JScrollPane createRightScrollPane() {
    TimeChartPanel chartPanel = new TimeChartPanel(chartInfo);
    chartPanel.setPreferredSize(new Dimension(0,0)); //to avoid initial vertical scroll bar
    chartInfo.setChartPanel(chartPanel);
    scrollPane = new ScaledScrollPane(chartPanel, chartInfo.getCoord(),documentFrame,10);
    chartInfo.getAxisPanel().setPreferredSize(new Dimension(GraphicConfiguration.getInstance().getRowChartHeaderWidth(),(int)chartPanel.getPreferredSize().getHeight()));
     chartPanel.configureScrollPaneHeaders(scrollPane,chartInfo.getAxisPanel());
    chartInfo.setChartPanel(chartPanel);
    return scrollPane;
  }
View Full Code Here

TOP

Related Classes of com.projity.pm.graphic.chart.TimeChartPanel

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.