Search found 5 matches

by Raider
Mon Jun 11, 2018 7:03 am
Forum: JFreeChart
Topic: XYDataSeries does not update
Replies: 2
Views: 4626

Re: XYDataSeries does not update

Ah thank you for this information:)
by Raider
Fri Jun 08, 2018 9:49 am
Forum: JFreeChart
Topic: XYDataSeries does not update
Replies: 2
Views: 4626

XYDataSeries does not update

I have an issue with updating a XYDataSeries: With version 1.0.13 it worked to update the dataset using (all elements in series are 0 before): XYDataItem item = series_.getDataItem( index ); item.setY( data ); With version 1.0.19 the item1 is set to the new value, but the series does not update. A w...
by Raider
Wed Dec 13, 2017 2:48 pm
Forum: JFreeChart
Topic: CombinedDomainXYPlot with multiple domain axis
Replies: 0
Views: 4650

CombinedDomainXYPlot with multiple domain axis

Hello, i want to create a CombinedDomainXPlot with two XYPlots. The first is a TimeSeries graph, the other is other is a IntervalChart for displaying several time "events". This does work really go but now i need to add a second domain axis for the whole plot. The first axis (which already works) is...
by Raider
Tue Dec 05, 2017 8:21 am
Forum: JFreeChart
Topic: TaskSeriesCollection in one row
Replies: 2
Views: 4020

Re: TaskSeriesCollection in one row

Thank you, worked for me :)
by Raider
Fri Dec 01, 2017 10:14 am
Forum: JFreeChart
Topic: TaskSeriesCollection in one row
Replies: 2
Views: 4020

TaskSeriesCollection in one row

Hello, i want to create a Plot with two subplots, which schow values over a given time and on the second subplot serveral task should be visible. Therefore I use the Demo XYTaskDatasetDemo2 which works really fine, but now I want to show all tasks in one row, because there can't be two tasks at the ...