Hello,
I have a question, is it possible to insert the image directly into the database and for displaying I will fetch using result sets.
Kindly give your ideas and opinions in relation to this!
Thanks
Search found 28 matches
- Mon Dec 05, 2005 6:00 am
- Forum: JFreeChart
- Topic: Image storing in database.
- Replies: 1
- Views: 2397
- Sat Dec 03, 2005 1:20 pm
- Forum: JFreeChart
- Topic: IDE
- Replies: 2
- Views: 2981
- Sat Dec 03, 2005 10:15 am
- Forum: JFreeChart
- Topic: IDE
- Replies: 2
- Views: 2981
IDE
Hello,
Is there any IDE or tool available for developing JFreecharts using JSP or Java or any plug ins or extensions available so that I plugin to JDeveloper or Eclipse?
Any help is highly appreciated.
Thanks
Is there any IDE or tool available for developing JFreecharts using JSP or Java or any plug ins or extensions available so that I plugin to JDeveloper or Eclipse?
Any help is highly appreciated.
Thanks
- Wed Nov 16, 2005 12:17 pm
- Forum: JFreeChart
- Topic: Passing X-axis parameter
- Replies: 0
- Views: 1942
Passing X-axis parameter
Hello,
How can I pass X- axis values as parameters for drill down graphs?
Please help.
Thanks
How can I pass X- axis values as parameters for drill down graphs?
Please help.
Thanks
- Mon Oct 31, 2005 11:57 am
- Forum: JFreeChart
- Topic: Setting the width of stacked bars
- Replies: 0
- Views: 1946
Setting the width of stacked bars
Hello,
How can I specify and set the width of the stacked bar?
Thanks
How can I specify and set the width of the stacked bar?
Thanks
- Sat Oct 22, 2005 4:31 pm
- Forum: JFreeChart
- Topic: X-axis label not getting fully displayed
- Replies: 0
- Views: 2167
X-axis label not getting fully displayed
Hello, I have labels on X-axis and becuase the length is long, it is not getting full displayed, how can I solve this problem. Pasted below is my code. Any help is highly appreciable. Thanks *** JSP ****** CategoryAxis categoryAxis = new CategoryAxis("Site"); ValueAxis valueAxis = new NumberAxis("Va...
- Wed Oct 19, 2005 6:12 pm
- Forum: JFreeChart
- Topic: Displaying data on X-axis and Passing Parameters
- Replies: 2
- Views: 3354
Sorry that i didn't explain properly! This is my query select org_id,tot_emp,tot_non_ from org_det I am passing org_id(category) as the parameter. (rend.setItemURLGenerator(new StandardCategoryURLGenerator("xy_chart.jsp","series","category")); If I use org_name in the query, the stacked bars are get...
- Wed Oct 19, 2005 12:22 pm
- Forum: JFreeChart
- Topic: Unabl to put all my dates on X-axis for Time Series Demo3.
- Replies: 4
- Views: 5893
- Wed Oct 19, 2005 11:59 am
- Forum: JFreeChart
- Topic: Displaying data on X-axis and Passing Parameters
- Replies: 2
- Views: 3354
Displaying data on X-axis and Passing Parameters
Hello, I have stacked bar and getting values using sql, I have three columns namely org_id, emp_count and non_emp_count. If I use one more columnm ,y graph is getting changed. What I wanted is I want to add one more column(org_name) and show those values on my X-axis instead of the org_id. The param...
- Tue Oct 18, 2005 9:33 pm
- Forum: JFreeChart
- Topic: Color Not Changing
- Replies: 7
- Views: 9084
- Tue Oct 18, 2005 6:22 pm
- Forum: JFreeChart
- Topic: Color Not Changing
- Replies: 7
- Views: 9084
I am sorry about the ignorance,now I am getting error, could you kindly correct my code. method setRenderer(org.jfree.chart.renderer.category.StackedBarRenderer3D) not found in class org.jfree.chart.plot.Plot **** JSP*** CategoryAxis categoryAxis = new CategoryAxis("Site"); ValueAxis valueAxis = new...
- Tue Oct 18, 2005 7:08 am
- Forum: JFreeChart
- Topic: Color Not Changing
- Replies: 7
- Views: 9084
I am calling the StackedBarRenderer3D rend nefore JFreeChart chart gets initialized. I am pasting my code, kindly correct my mistakes. ***** JSP***** CategoryAxis categoryAxis = new CategoryAxis("Site"); ValueAxis valueAxis = new NumberAxis("Value"); StackedBarRenderer3D rend = new StackedBarRendere...
- Sun Oct 16, 2005 11:21 pm
- Forum: JFreeChart
- Topic: Color Not Changing
- Replies: 7
- Views: 9084
Color Not Changing
I am using StackedBar3D fo my JSP, I am using
StackedBarRenderer3D rend = new StackedBarRenderer3D();
rend.setSeriesPaint(0, Color.GREEN);
rend.setSeriesPaint(1, Color.RED);
However my bar color not getting changed, someone could kindly help?
Thanks in advance
StackedBarRenderer3D rend = new StackedBarRenderer3D();
rend.setSeriesPaint(0, Color.GREEN);
rend.setSeriesPaint(1, Color.RED);
However my bar color not getting changed, someone could kindly help?
Thanks in advance
- Sun Oct 16, 2005 10:12 pm
- Forum: JFreeChart
- Topic: Stacked Bar Drill
- Replies: 7
- Views: 8660
- Sun Oct 16, 2005 6:58 pm
- Forum: JFreeChart
- Topic: Stacked Bar Drill
- Replies: 7
- Views: 8660
Hello, Thanks again, I re wrote my JSP to complaint with to send data to html. But still I am having problems, when it generates the graph, I could see the code it generates with the following code pasted below, I am still not able to understnd why it's not displaying tooltips or drill down. I am pa...