Search found 6 matches
- Fri Jul 18, 2008 3:43 pm
- Forum: JFreeChart
- Topic: DateAxis and DateLabel rotate
- Replies: 4
- Views: 8474
- Fri Jul 18, 2008 3:02 pm
- Forum: JFreeChart
- Topic: DateAxis and DateLabel rotate
- Replies: 4
- Views: 8474
DateAxis and DateLabel rotate
Hi all, i used a TimeChart with DateAxis. But i want to rotate all date labels as can be done with CategoryAxis : categoryaxis.setCategoryLabelPositions(CategoryLabelPositions.createUpRotationLabelPositions(0.78539816339744828D)); is it possible to do that in standard with DateAxis or i must impleme...
- Wed Jun 27, 2007 11:52 am
- Forum: JFreeChart
- Topic: Timeseries - percent value label
- Replies: 5
- Views: 4261
sorry for disturbance, it was an error of my share, it works very well, dit was the "if" which was not good
i tested the wrong class, so it was normal that the labelgenerator was never set
Code: Select all
if ( datasetStrategy instanceof CoberturaBarChartStrategy )
- Wed Jun 27, 2007 10:47 am
- Forum: JFreeChart
- Topic: Timeseries - percent value label
- Replies: 5
- Views: 4261
- Wed Jun 27, 2007 9:20 am
- Forum: JFreeChart
- Topic: Timeseries - percent value label
- Replies: 5
- Views: 4261
yes i put my whole code : XYDataset dataset = (XYDataset)this.datasetStrategy.getDataset(); report = ChartFactory.createTimeSeriesChart( this.datasetStrategy.getTitle(), // title this.datasetStrategy.getXAxisLabel(), // x-axis label this.datasetStrategy.getYAxisLabel(), // y-axis label dataset, // d...
- Wed Jun 27, 2007 8:09 am
- Forum: JFreeChart
- Topic: Timeseries - percent value label
- Replies: 5
- Views: 4261
Timeseries - percent value label
Hi, i try to create TimeSeriesChart with values from 0 to 1 which represent percentage values. I try to set a label generator to display percentage value but it doesn't work. new StandardXYItemLabelGenerator( StandardXYItemLabelGenerator.DEFAULT_ITEM_LABEL_FORMAT, new SimpleDateFormat("dd/MM/yyyy") ...