Search found 6 matches

by xiaoqiao
Thu Nov 11, 2004 4:35 am
Forum: JFreeChart
Topic: LogarithmicAxis assistance - blew away the test code :(
Replies: 3
Views: 3209

hello,do u want this? private JFreeChart createChart(XYDataset dataset) { JFreeChart chart = ChartFactory.createXYLineChart( "XY Line Chart Test", // chart title "X", // x axis label "Y", // y axis label dataset, // data PlotOrientation.VERTICAL, true, // include legend true, // tooltips false // ur...
by xiaoqiao
Wed Nov 10, 2004 10:07 am
Forum: JFreeChart
Topic: plotting lines and bars together in one chart
Replies: 2
Views: 1923

q1:sure
q2:sorry, i can not understand your question
by xiaoqiao
Wed Nov 10, 2004 10:03 am
Forum: JFreeChart
Topic: display % above or below marker
Replies: 3
Views: 2724

How about put the "%" in tick label?
by xiaoqiao
Wed Nov 10, 2004 9:48 am
Forum: JFreeChart
Topic: Multiple datasets and multiple tooltip generators
Replies: 2
Views: 2926

yes,sure
plot may have multiple datasets,which is implemented by addSecondaryDataset().At the same time u should use another method addSecondaryRenderer().
so for the secondary renderer,u may do like this:
renderer.setToolTipGenerator();
it's ok
by xiaoqiao
Wed Nov 10, 2004 9:39 am
Forum: JFreeChart
Topic: Hide certain series in the legend
Replies: 5
Views: 11504

You may revise the source code of jfreechart. Commonly u should revise the getLegendItems() method in plot. The following is a simple sample for PiePlot: [ public LegendItemCollection getLegendItems() { LegendItemCollection result = new LegendItemCollection(); List keys = null; if (this.dataset != n...
by xiaoqiao
Wed Nov 10, 2004 9:00 am
Forum: JFreeChart
Topic: Bug?setExplodePercent() method is invalid for 3D pieplot
Replies: 0
Views: 1397

Bug?setExplodePercent() method is invalid for 3D pieplot

my edition is 0.9.18
In my propgram setExplodePercent() method is used ,but no explode effect is shown for 3D pie plot,while 2D pie plot works well.
How about edition 0.9.21? I haven't tried it yet...