Is it possible to use multiple data sources as multiple series in a chart?
For example
Can I use these two data sources in the same line chart?
For example
01.
var
Product1 = [
02.
{
"Date"
: 2012-01-01,
"Qty"
: 2},
03.
{
"Date"
: 2012-02-01,
"Qty"
: 10}
04.
]
05.
06.
var
Product2 = [
07.
{
"Date"
: 2012-01-01,
"Qty"
: 13},
08.
{
"Date"
: 2012-02-01,
"Qty"
: 17}
09.
]
Can I use these two data sources in the same line chart?