Every Dojo chart that I have worked with has allowed for the use of an array of objects that contain the series of values and tooltips for each value point.
When using the StackedAreas chart type, Dojo seems to ignore my values inside the objects. For example:
var values = [
{x: 1, y: 10, tooltip: 'test1'},
{x: 2, y: 30, tooltip: 'test2'},
{x: 3, y: 60, tooltip: 'test3'}
];
This works in Lines, Columns and StackedColumns chart types. The chart renders the axis and you can see the markers sitting on the base line of the char as if I had only supplied zero for all values.
Thanks in advance. Hope this makes sense.