TimeSeries chart with a marker

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
kieku
Posts: 1
Joined: Thu Oct 07, 2010 7:50 am
antibot: No, of course not.

TimeSeries chart with a marker

Post by kieku » Thu Oct 07, 2010 8:44 am

Hi,

I'm trying to plot a time series chart. The data set has time, value pairs along with a marker for each value. The marker is a string associated with each value

Example:

(06/10/2010, 600, High)
(06/10/2010, 400, Medium)
(06/10/2010, 200, Low)

The marker will be given based on the value. (example Label Low if value is between 0-200, medium if 200-400 and high if 400-600).

Once i plot the data set, i need to show the tool tips as well in the format date, value and the marker. The problem is TimeSeries constructor doesn't take the third string value. Is there an alternative way to implement this?

Locked