Search found 6 matches
- Wed Jun 15, 2011 3:32 pm
- Forum: JFreeChart
- Topic: Chart scaled - can this be turned off
- Replies: 3
- Views: 4845
Chart scaled - can this be turned off
if i'm adding a chart to the layout allowing it to strech when resizing the window this will cause the labels of the axis to get stretched/scaled. having the text in a fiexed font would be nice - if the font has to be scaled smaller or bigger this would be ok - but please do not scale my labels only...
- Wed Jun 15, 2011 3:25 pm
- Forum: JFreeChart
- Topic: Linechart with mouse-draggable areas
- Replies: 2
- Views: 3932
Re: Linechart with mouse-draggable areas
ok, found the solution by myself - but it's a little bit tricky: - for the color fields i just added a XYAreaRenderer - the draggable lines were not very easy: first of all you need a entity for a mouse-listener. that's why a line chart with two points and a line inbetween doesn't work. two things w...
- Mon May 30, 2011 10:52 am
- Forum: JFreeChart
- Topic: Linechart with mouse-draggable areas
- Replies: 2
- Views: 3932
Linechart with mouse-draggable areas
Hi! i would like to build a normal line chart with areas that can be dragged with the mouse. the areas should be represented by a bar and a line for separation. with the mouse over the line o the area separator there should appear a left/right mouse curser. clicking and dragging to the side should m...
- Thu Feb 18, 2010 3:16 pm
- Forum: JFreeChart
- Topic: Maximum amount of ticks using auto range
- Replies: 0
- Views: 2013
Maximum amount of ticks using auto range
I wonder if there is a possibility to use the auto range mode of an axis and specifying the maximum amount of ticks!? e.g. it is very ugly if you have auto range minimum size 1 and no values in the chart and the ticks are "0 - 0.05 - 0.1 ... 1" i would like to have something like setTickMaxAmount(6)...
- Thu Feb 18, 2010 1:58 pm
- Forum: JFreeChart
- Topic: Transformed Axis labels
- Replies: 0
- Views: 1889
Transformed Axis labels
Axis labels are transformed in two ways: - The labels get strechded (e.g. vertical label gets stretched itself vertically when the chart with is a lot more than its heicht) - The font size of the tick labels is transformed. Specifying e.g. font size 12 i get a very small font if the chart is very sm...
- Thu Feb 18, 2010 1:52 pm
- Forum: JFreeChart
- Topic: real time plotting
- Replies: 4
- Views: 9050
Re: real time plotting
Hi! i digged out this old post because i have exatly the same problem. Having real-Time data there is a need to clear() series or remove single elements from it. As i found out here the occuring exceptions come from non thread safety. A custom XYDataset implementation is a problem due to wanting to ...