Hello, I am using a Line Chart. This chart is bound to a stored procedure. From the stored proc I am returning 2 columns , one is an integer and the other is a string. I need the string column to be displayed on the X-axis as labels in place of <SERIES_LABEL>. How do I achieve this?
Thanks
A line chart's x axis cannot be numeric. I think you should use scatter chart instead. You can plot x,y points from your data and connect them with lines by using chart.ScatterChart.ConnectWithLines = true. I cannot see your image, but I think you just need to set the ItemFormatString to "<DATA_VALUE:0.##>"
Hello, thanks for your reply, I just edited my post...could you please look at that!