I have just started using Simple chart in our application. We are using dbml - C# - Data Source in our web application. For instance the way we are passing data to a page is in the attached file (Please see the attached files). I see some examples in the demo in which how simple chart data has been used which looks like below. So my question is how I should use our data source to work with FacetChart dynamically with our application please?
var chartData = [
{region: "West", product: "Cars", sales: 37},
{region: "East", product: "Motorcycles", sales: 23},
{region: "South", product: "Motorcycles", sales: 45}
]
var chartData = [
{region: "West", product: "Cars", sales: 37},
{region: "East", product: "Motorcycles", sales: 23},
{region: "South", product: "Motorcycles", sales: 45}
]
Comment