Re: [visualization-api] Highlighting a column (current) month on x-axis of a scatter-chart

2016-06-06 Thread Bram Patelski
Got it working. Hope to see that radar-chart in Google Charts as well. Currently using Flotr2 for this. On Wednesday, June 1, 2016 at 9:24:17 AM UTC+2, Bram Patelski wrote: > > Hi Daniel, > > Thank you for the example. That should work for this diagram. I'm > currently looking in

Re: [visualization-api] Highlighting a column (current) month on x-axis of a scatter-chart

2016-06-01 Thread Bram Patelski
et the pointSize to 0 at the top > level, and then > set it to a non-zero value inside your scatter series. > > I started with your code to create this example: > https://jsfiddle.net/dlaliberte/6t6eg65n/ > > On Mon, May 30, 2016 at 3:39 AM, Bram Patelski

Re: [visualization-api] How can I draw radar chart with Google Charts?

2016-05-30 Thread Bram Patelski
Would like to see Radar chart in the new Google Charts framework as well. On Sunday, May 22, 2016 at 7:02:37 PM UTC+2, Daniel LaLiberte wrote: > > Hi Youichi, > > We don't have a Radar chart yet in the Google Charts. I am considering > implementing one, though, using an AreaChart, and

Re: [visualization-api] Highlighting a column (current) month on x-axis of a scatter-chart

2016-05-30 Thread Bram Patelski
{type: 'star', dent: 0.2, sides: 4 } }, 2: { }, 3: { type: 'area' } }, trendlines: { 0: {}}, legend : 'none' }; var chart = new google.visualization.ScatterChart(document.getElementById( 'chart_div')); chart.draw(data, options); } On Monday, May 30, 2016 at 9:38:58 AM UTC+2, Bram P

Re: [visualization-api] Highlighting a column (current) month on x-axis of a scatter-chart

2016-05-30 Thread Bram Patelski
d times here: > https://developers.google.com/chart/interactive/docs/datesandtimes#formatting-axis-gridline-and-tick-labels > > > > On Fri, May 27, 2016 at 10:04 AM, Bram Patelski <bram.p...@gmail.com > > wrote: > >> Hi, >> >> Anyone know how to hig

[visualization-api] Highlighting a column (current) month on x-axis of a scatter-chart

2016-05-27 Thread Bram Patelski
Hi, Anyone know how to highlight a part of the chart's background as a vertical column? I'm building a PoC for a scatter-chart where I need to plot crosshairs on a timeline. It displays a timespan of about a year ranging 12 months, with somewhere around 2/3 of the chart, we display the

[visualization-api] Stacked Chart order of the legend

2015-11-12 Thread Bram Patelski
Hi, I've implemented a stacked chart like this: google.load('visualization', '1', {packages: ['corechart', 'line']}); google.setOnLoadCallback(drawBackgroundColor); function drawBackgroundColor() { var data = new google.visualization.DataTable(); data.addColumn('date', 'Date');

Re: [visualization-api] Stacked Chart order of the legend

2015-11-12 Thread Bram Patelski
but there's no option to do this. > > On Thu, Nov 12, 2015 at 9:20 AM Bram Patelski <bram.patel...@gmail.com> > wrote: > >> Hi, >> >> I've implemented a stacked chart like this: >> >> google.load('visualization', '1', {packages: ['corechart', 'line