61626364656667
* @param model the ChartDataModel * @param title the title String */ public ChartPanel(ChartDataModel model, String title) { this(); chart = new DefaultChart(model, title); }
72737475767778
* @param title the title String * @param coord the id of the coordinate system configuration */ public ChartPanel(ChartDataModel model, String title, int coord) { this(); chart = new DefaultChart(model, title, coord); }