Search found 15 matches

by khipras
Fri Jul 29, 2005 4:15 pm
Forum: JFreeChart
Topic: Can I change line width in TimeSeriesChart or xyCharts?
Replies: 4
Views: 6478

There is nothing available to change the line width?
Any hints are welcome, or if there no any way to make, I appreciate to tell me.
Thanks
by khipras
Mon Jun 27, 2005 9:10 pm
Forum: JFreeChart
Topic: Can I change line width in TimeSeriesChart or xyCharts?
Replies: 4
Views: 6478

Some tips to change Width line in some lineal charts?
by khipras
Thu Jun 23, 2005 7:30 pm
Forum: JFreeChart
Topic: Can I change line width in TimeSeriesChart or xyCharts?
Replies: 4
Views: 6478

Can I change line width in TimeSeriesChart or xyCharts?

Hi!
I want to change the line width in some charts to make more visible those lines.
Can i do this?
Thanks...
by khipras
Thu Jun 23, 2005 7:20 pm
Forum: JFreeChart
Topic: setDisplaySeriesShapes in version 1.0 ?
Replies: 7
Views: 8735

You must get the plot renderer and cast to XYLineAndShapeRenderer

myxyshape.setDefaultShapesVisible(true);
myxyshape.setDefaultShapesFilled(false);
...
by khipras
Tue Mar 01, 2005 10:02 pm
Forum: JFreeChart
Topic: using JFreeChart with JSP
Replies: 85
Views: 486513

ChartViewer do not refresh chart image

Hi, every one., I use this ChartViewer code example to create my image charts. I pass some parameters to the servlet chart, but when I change some parameters, ChartViewer show me the last chart , not the new that I selected. But when I reload the page, the refresh my chart. I put on my jsp page. <me...
by khipras
Tue Feb 15, 2005 9:50 pm
Forum: JFreeChart
Topic: Ahhhhh
Replies: 13
Views: 22979

..... why?
any special feature?
by khipras
Tue Feb 15, 2005 12:13 am
Forum: JFreeChart
Topic: Ahhhhh
Replies: 13
Views: 22979

You should use

new JDBCCategoryDataset(connection); instead JDBCXYDataset to chart Bar...

And then
make chart with
JFreeChart barChart = ChartFactory.createBarChart3D("3D Example", "Category", "Value", categorydataset, PlotOrientation.VERTICAL, true, true, false);
by khipras
Mon Feb 14, 2005 11:12 pm
Forum: JFreeChart
Topic: I want to show in the graph only from Monday to Friday
Replies: 2
Views: 7437

Re: replay

Hi manchi... Thanks very much!!! Your hint is that I look for... Hi, The method 'public static SegmentedTimeline newMondayThroughFridayTimeline()' in 'package org.jfree.chart.axis.SegmentedTimeLine' class is may be usefull for you. I do next implementation to my Class DateAxis dateaxis = (DateAxis) ...
by khipras
Mon Feb 14, 2005 10:47 pm
Forum: JFreeChart
Topic: How to change the series label ina JDBCXYDataset?
Replies: 7
Views: 12112

Hi Andrew. Maybe this was an ugly solution, but I guess that you can tell me another clean way to do this. How Can I change the Series Name Label from a JDBCXYDataset.? This new extended method works greatly to make this kind of change to any JDBCXYDataset that I would change. I can't implementing y...
by khipras
Fri Feb 11, 2005 5:09 pm
Forum: JFreeChart
Topic: How do I chart only the values selected in a TimeSeriesChart
Replies: 1
Views: 3415

How do I chart only the values selected in a TimeSeriesChart

I'll try to explain this problem. Maybe was not clear. I have a select that return next values dia (avg) (avg) (max) (max) 2005-02-01 9.07 0.10 41.3 2.7 2005-02-02 8.61 0.22 37.7 25.8 2005-02-03 7.82 0.21 24 19.6 2005-02-04 7.86 0.20 25.7 21.3 2005-02-07 8.85 0.21 26.7 12.7 2005-02-08 9.38 0.22 26.4...
by khipras
Fri Feb 11, 2005 3:36 am
Forum: JFreeChart
Topic: I want to show in the graph only from Monday to Friday
Replies: 2
Views: 7437

I want to show in the graph only from Monday to Friday

I have a JDCXYDataset and I want to make a timeserieschart but I select from my table only dates in a x month from Monday to Friday, but the chart show me all days in the month. I don't want to show Saturday neither Sunday. My recordset don't get those days, but when I make the chart those days are ...
by khipras
Thu Feb 10, 2005 10:56 pm
Forum: JFreeChart
Topic: How to change the series label ina JDBCXYDataset?
Replies: 7
Views: 12112

I found a solution

Ok! Andrew thanks for the hint. The problem is that I use a XYDataset and i'm not sure where to put your suggested code, beacuse my dataset is egenerated by a Query. I add to the source code of this class next method to solve my problem. /** * Set the legend item labels. * * @param itemLabels The ne...
by khipras
Wed Feb 09, 2005 5:52 pm
Forum: JFreeChart
Topic: How to change the series label ina JDBCXYDataset?
Replies: 7
Views: 12112

Re: Inherit and override

Hi thanks, for your response.
First, I can NOT change the sql statement, this is generate by another software.

I load this sql to make the chart. but I wan't to change the series label.

I'll try with GetSeriesName
Andrew Lazarus wrote:GetSeriesName
Some sample code?

thanks..
by khipras
Tue Feb 08, 2005 5:16 pm
Forum: JFreeChart
Topic: How to change the series label ina JDBCXYDataset?
Replies: 7
Views: 12112

How to change the series label ina JDBCXYDataset?

Hi!! I have some querys that generates a JDBCXYDataset and draw the chars greatly. The problem is that I Can't modified this SQL instructions to put some like Select MAX(field1), AVG(field2) from tablename select MAX(field1) AS `max mem`, AVG(field2) AS `Average range` from tablename And so on with ...