Yes, you would have to add a blank row like that. I might suggest using null instead of 0 for the values in the row, since with 0 you will end up with a line along the axis, which spawns a tooltip when hovered over.
On Friday, March 1, 2013 11:51:31 AM UTC-5, Ιορδάνης Δουλευτίδης wrote: > > In Stepped Area Chart > > https://google-developers.appspot.com/chart/interactive/docs/gallery/steppedareachart > I would like to have the columns separated. > > The only work around i could think of is adding a blank Data Row like this: > [' ',0,0,0,0], > > Do you know any other way? > Thanks > > var data = google.visualization.arrayToDataTable([ > ['Director (Year)', 'Rotten Tomatoes', 'IMDB'], > ['Alfred Hitchcock (1935)', 8.4, 7.9], > > [' ',0,0,0,0], > ['Ralph Thomas (1959)', 6.9, 6.5], > ['Don Sharp (1978)', 6.5, 6.4], > ['James Hawes (2008)', 4.4, 6.2] > ]); > > -- 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?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
