I am using a tchart in Delphi. It is a bar chart, and to add to each series, it requires 3 parameters like this:
chart1.series[0].add(123,'annoying',clred);
The middle parameter, in this example the word "annoying" results in that string being displayed over the bar.
Is there a way to create a bar chart without having the string appear? The obvious thing was to use an empty value , like ...add(123,'',clred)
but it still draws this over the bar with what looks like random numbers in each series.