Page 1 of 1

Show Data Labels On Bar Charts

PostPosted: 31 Oct 2015 08:24
by ariopax
Hi


Is possible show data labels on bar charts?


Best Regards.

Re: Show Data Labels On Bar Charts

PostPosted: 02 Nov 2015 11:11
by Alexander Bulei
Hi ariopax,

Yes, it's possible...

delphi code
with IWCGJQPlot1.JQPlotOptions.Series.Add do
begin
PointLabels.Show:= True;
PointLabels.Labels.Add('Data Label 1');
PointLabels.Labels.Add('Data Label 2');
PointLabels.Labels.Add('Data Label 3');
PointLabels.Labels.Add('Data Label 4');
end;


Best Regards.