hi
is it possible to write single JAVA method for standalone and webbased application?? for webbases application requires response object to pass for outputstrem but in standalone it is not required.
Search found 10 matches
- Thu Jul 01, 2004 7:10 am
- Forum: JFreeChart
- Topic: single method for standalone and webbased application
- Replies: 0
- Views: 1793
- Tue Jun 29, 2004 10:20 am
- Forum: JFreeChart
- Topic: scrollable charts
- Replies: 5
- Views: 8163
scrollable charts
Hi
I am using JSP and Servlets to draw charts.
is there any way to show scrollable?? My dataset contains more than 50 values.
Thanx
I am using JSP and Servlets to draw charts.
is there any way to show scrollable?? My dataset contains more than 50 values.
Thanx
- Tue Jun 29, 2004 8:02 am
- Forum: JFreeChart
- Topic: increase PNG size
- Replies: 1
- Views: 3645
increase PNG size
hi I want to increase PNG fle size. code:- final CategoryDataset dataset1 = createDataset1(path); final NumberAxis rangeAxis1 = new NumberAxis("Questions"); rangeAxis1.setStandardTickUnits(NumberAxis.createIntegerTickUnits()); rangeAxis1.setTickUnit(new NumberTickUnit(2.0)); final LineAndShapeRender...
- Fri Jun 25, 2004 6:12 am
- Forum: JFreeChart
- Topic: Overlrpping labels in Line Chart
- Replies: 0
- Views: 2317
Overlrpping labels in Line Chart
hi I am using LineandShapeRenderer to display Line Chart . i dont know how to attach PNG file but i am giving my code. Please help Code :- final CategoryDataset dataset1 = createDataset1(); final NumberAxis rangeAxis1 = new NumberAxis("Questions"); rangeAxis1.setStandardTickUnits(NumberAxis.createIn...
- Thu Jun 24, 2004 1:26 pm
- Forum: JFreeChart
- Topic: y-axis ranges problem
- Replies: 1
- Views: 4526
y-axis ranges problem
Hi i want to display y-axis ranges as 0,10,20,30..... now its displaying 0,1,2,3,4.... Code :- final CategoryDataset dataset1 = createDataset1(); final NumberAxis rangeAxis1 = new NumberAxis("Questions"); rangeAxis1.setAutoRangeIncludesZero(false); final LineAndShapeRenderer renderer1 = new LineAndS...
- Thu Jun 24, 2004 12:29 pm
- Forum: JFreeChart
- Topic: LineChart overlapping labels
- Replies: 0
- Views: 2079
LineChart overlapping labels
Hi I am using this code to generate Line Chart. But boundries of graph overlapping labels of the upper line . final CategoryDataset dataset1 = createDataset1(); final NumberAxis rangeAxis1 = new NumberAxis("Questions"); rangeAxis1.setStandardTickUnits(NumberAxis.createIntegerTickUnits()); final Line...
- Thu Jun 24, 2004 11:20 am
- Forum: JFreeChart
- Topic: barchart display labels
- Replies: 2
- Views: 4913
- Thu Jun 24, 2004 10:13 am
- Forum: JFreeChart
- Topic: barchart display labels
- Replies: 2
- Views: 4913
barchart display labels
Hi i am using JSP to display. How to display value labels on each bar?? Code:- CategoryAxis categoryAxis = new CategoryAxis("Student Test - 1"); categoryAxis.setCategoryMargin(0.3); categoryAxis.setVerticalCategoryLabels(true); ValueAxis valueAxis = new NumberAxis("Questions"); BarRenderer renderer ...
- Thu Jun 24, 2004 10:09 am
- Forum: JFreeChart
- Topic: piechart diplay percentage
- Replies: 2
- Views: 4898
- Thu Jun 24, 2004 7:18 am
- Forum: JFreeChart
- Topic: piechart diplay percentage
- Replies: 2
- Views: 4898
piechart diplay percentage
hi
i am using StandardPieItemLabelGenerator.
my code :-
StandardPieItemLabelGenerator g1 = new StandardPieItemLabelGenerator("{0}: ({1}, {2})", NumberFormat.getNumberInstance(), NumberFormat.getPercentInstance());
plot.setToolTipGenerator(g1);
what i have to add to display % values.
Thanks
i am using StandardPieItemLabelGenerator.
my code :-
StandardPieItemLabelGenerator g1 = new StandardPieItemLabelGenerator("{0}: ({1}, {2})", NumberFormat.getNumberInstance(), NumberFormat.getPercentInstance());
plot.setToolTipGenerator(g1);
what i have to add to display % values.
Thanks