[visualization-api] More than two lines in a line chart?

2015-07-06 Thread Robert Ramzi Khayat
Hello, Is it possible to have more than two lines in a line chart? See example http://codepen.io/dnwebdev/pen/mJxReY Thanks -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving emails

Re: [visualization-api] More than two lines in a line chart?

2015-07-06 Thread Robert Ramzi Khayat
OH! I see thanks! On Monday, July 6, 2015 at 10:40:48 AM UTC-4, Daniel LaLiberte wrote: Notice that your 'rows' don't define more than 3 columns for each row. For all the other columns, the data is all nulls. On Mon, Jul 6, 2015 at 10:36 AM, Robert Ramzi Khayat robert...@gmail.com

Re: [visualization-api] More than two lines in a line chart?

2015-07-06 Thread Robert Ramzi Khayat
+Daniel, thank you for the reply. This is the object in question. var myObj = { cols: [ {id:,label:Date,type:string}, {id:,label:a,type:number}, {id:,label:b,type:number}, {id:,label:c,type:number},

Re: [visualization-api] More than two lines in a line chart?

2015-07-06 Thread 'Daniel LaLiberte' via Google Visualization API
Yes, it is certainly possible. But your data, from myObj, only has 3 columns in your 'rows', although you defined more than 3 columns in your 'cols'. On Mon, Jul 6, 2015 at 9:21 AM, Robert Ramzi Khayat robertrkha...@gmail.com wrote: Hello, Is it possible to have more than two lines in a

Re: [visualization-api] More than two lines in a line chart?

2015-07-06 Thread 'Daniel LaLiberte' via Google Visualization API
Notice that your 'rows' don't define more than 3 columns for each row. For all the other columns, the data is all nulls. On Mon, Jul 6, 2015 at 10:36 AM, Robert Ramzi Khayat robertrkha...@gmail.com wrote: +Daniel, thank you for the reply. This is the object in question. var myObj = {