I've got the line chart below on my page and am binding this to a dataset on click of a search button once the user has selected their criteria.
This dataset contains columns Country, Product & Price. I would like Country displayed along the bottom (x-axis), and then have Price plotted on the graph for each product.
I believe I've got this defined correctly however when I run the report I get a js error "'t.options' is null or not an object". Please can you advise on this?
In the code behind I'm simply retrieving my dataset and then:
chartPriceCorridor1.DataSource = Prices;
chartPriceCorridor1.DataBind();