Search found 8 matches
- Sat Aug 26, 2006 12:14 am
- Forum: JFreeChart
- Topic: Problem for displaying tick without label on axis
- Replies: 11
- Views: 13326
Thanks dropsy, Actually in the thread you mention, jwenting posted some code snipets too and with those I could succesfully resolve the need I had. Thanks for this code that you provided here. One think I could not do it was to force to add the upperDate to the tick mark labels with out the labels f...
- Wed Aug 16, 2006 10:05 pm
- Forum: JFreeChart
- Topic: DateAxis Questions/Problems
- Replies: 16
- Views: 30148
Thanks jwenting, I cheked jfreechart DateAxis code and the code you provided and got a basic working version of the task I'm trying to achive. These are the interface methods I've added/modified: class ModifiedDateValueAxis extends ValueAxis implements Cloneable, Serializable { .... public void setF...
- Wed Aug 16, 2006 1:36 am
- Forum: JFreeChart
- Topic: Problem for displaying tick without label on axis
- Replies: 11
- Views: 13326
- Sat Aug 12, 2006 12:52 am
- Forum: JFreeChart
- Topic: DateAxis Questions/Problems
- Replies: 16
- Views: 30148
- Mon Jun 26, 2006 11:24 pm
- Forum: JFreeChart
- Topic: How to - increase the size of chart
- Replies: 4
- Views: 7448
pie chart border/margin disapear
What I did was this
Code: Select all
// Set chart margin color to white, so that it blurs with chart background color
// this is necesary for pie charts
plot.setOutlinePaint(Color.WHITE);
- Fri Apr 14, 2006 1:08 am
- Forum: JFreeChart
- Topic: LineChart with diferent labels for x-axis....
- Replies: 1
- Views: 3375
Change to Time Series Chart
So, what I did was to change the chart to a Time Series Chart instead of a Line Chart
- Wed Apr 12, 2006 12:17 am
- Forum: JFreeChart
- Topic: LineChart with diferent labels for x-axis....
- Replies: 1
- Views: 3375
LineChart with diferent labels for x-axis....
Hi, all I have a graph DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.addValue(7.984032236740131, "X","01"); dataset.addValue(1.8335697637281712, "Y", "01"); dataset.addValue(79.87123090951631, "Z","01"); dataset.addValue(7.746030144754975, "X","02"); dataset.addValue(1.77943...
- Tue Apr 11, 2006 11:12 pm
- Forum: JFreeChart
- Topic: Format the x axis
- Replies: 2
- Views: 4811
Re: Format the x axis
I don't know where this code is too Any body? I am wanting to display information as given in PeriodAxisDemo1 but can not find the source code for this. Does anyone know how to display the charting information in this format??? the format is that it allows the axis to be labelled in terms of two or ...