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
730
Line chart plotting - URGENT
posted

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

Parents
No Data
Reply
  • 26458
    Offline posted

    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.##>"

Children