You can add a row to the DataTable with the missing quarter and then re-sort the data, or you can use the #insertRow method to add a row at the appropriate index.
// use addRow and re-sort data.addRow([/* row of data */]); data.sort(0); // use insertRow data.insertRow(/* index to insert row at */, [/* row of data */]); On Monday, April 21, 2014 6:33:50 PM UTC-4, Sudhir Kesharwani wrote: > > We have created a line chart that aggregates data and displays a chart > similar to below picture. > > > <https://lh3.googleusercontent.com/-HPUX9a_5i0I/U1WcSE9ZGzI/AAAAAAAALgE/t7GIvYO3Fc8/s1600/timeline_chart.png> > > > Since we do not have any data for 2013-Q2, we are missing the data for > that, is there a way i can add data to my aggregated tables? > > -- 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 from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/d/optout.
