Show Data Labels On Bar Charts

Hi
Is possible show data labels on bar charts?
Best Regards.
Is possible show data labels on bar charts?
Best Regards.
Welcome to the Official CGDevTools Support Community Forums.
https://www.cgdevtools.com/cgforum/
https://www.cgdevtools.com/cgforum/viewtopic.php?f=64&t=2516
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;