Trying to work through the online demos, there is no representation of what the actual dataset or viewmodels look like. This makes it difficult to format data properly to be consumed by the dataviz controls.
I have the following model:
The data looks as such, a column for the month, the year, and the total.
I need to display in a Line chart with a Series for each year (2013, 2012, 2011...) over the Category (X) Axis of Month (Jan, Feb, Mar...Dec). Value (Y) Axis is Total.
This is the start of my control, but its obviously missing something as I get a nonsensical result:
My Controller:
GetSales() returns a List of object
ReportMonthTotals
What exactly am I missing? Thanks.