JQPlot-BarGraph, with 3 Values. How many series?

I need to use a JQPlot to present 3 values in a bar graph. I would like each bar to have its own color, and show a text label on the x-axis. SO far I can only get the basic graph showing. I cannot figure out how to get the x-axis labels. Should I be using a single series?
I am working backwards from the examples in the demo.
I am working backwards from the examples in the demo.
- Code: Select all
IWCGJQPlot1.JQPlotData:= '[[200],[600],[700]]';
IWCGJQPlot1.JQPlotOptions.SeriesDefaults.Renderer:= jqprBarRenderer;
IWCGJQPlot1.JQPlotOptions.SeriesDefaults.BarRendererOptions.FillToZero:= True;
IWCGJQPlot1.JQPlotOptions.SeriesDefaults.PointLabels.Show:= True;
IWCGJQPlot1.JQPlotOptions.Legend.Show:= false;
Axis:= IWCGJQPlot1.JQPlotOptions.Axes.Add;
Axis.Options.AxesRender:= jqparCategoryAxisRenderer;
Axis:= IWCGJQPlot1.JQPlotOptions.Axes.Add;
Axis.AxisType:= jqpoxyYAxis;
Axis.Options.Pad:= 1.05;
Axis.Options.TickAxisOptions.FormatString:= '%d';