Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
295
Plot X-axis and Y-axis values on line chart
posted

I have a line chart and i want to display X-axis and Y-axis values next to the point on the line chart. Is it possible to do it? Just to eloborate a bit further if i have got 10 points on line chart then next to each of these 10 points i want to dispaly (X-value,Y-value).

Parents
No Data
Reply
  • 26458
    Verified Answer
    Offline posted

    you can set the ChartText property of the line chart. Here's how you can do it:

    go to the chart's properties and find LineChart.ChartText collection.
    add a new ChartTextAppearance to the collection
    on this new instance:
       set Column and Row properties to -2
       set ItemFormatString to <DATA_VALUE:00.##>,<ITEM_LABEL>
       set Visible to true

Children