Page 1 of 1

How do I show a comment for each value?

Posted: Fri May 27, 2005 2:17 pm
by 9524501
The database that houses the data being charted, allows users to add a comment on a result. I can pull the comment from the database and include it with the result set used to populate the chart. What is the best way to give the user the ability to view comments on the chart values?

Posted: Fri May 27, 2005 2:28 pm
by narcis
Hi KingDesigns,

You can make series marks visible, which would display the labels field from the dataset, and set axes labels to display series values doing:

Code: Select all

    TChart1.Series(0).Marks.Visible = True
    TChart1.Axis.Bottom.Labels.Style = talValue
    TChart1.Axis.Left.Labels.Style = talValue