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).
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 collectionon this new instance: set Column and Row properties to -2 set ItemFormatString to <DATA_VALUE:00.##>,<ITEM_LABEL> set Visible to true
Thx. It worked