Re: [visualization-api] Independent series on an Annotation Chart

2014-04-30 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Eugene, We'll be exposing more capability for the AnnotationChart within the next few releases. I hesitate to tell you until we settle on the interface, but you can already add a 'chart' option in your options where you can add the necessary 'interpolateNulls' option, so your lines will be con

Re: [visualization-api] prevent negative axis

2014-05-15 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Neil, You can constrain the lower end of the vertical axis like so: options = { ... vAxis: { viewWindow: { min: 0 } } } Since we can see 20 gridlines on your vertical axis, I suspect you have specified "count: 20", and if so, the chart tries its best to show 20 gridlines, with a bit

Re: [visualization-api] Re: prevent negative axis

2014-05-15 Thread 'Daniel LaLiberte' via Google Visualization API
I don't understand the reason it changes at all. What change to the data, the options, or to your page, are you making such that when you draw() the chart again, there might be a difference? Perhaps you *need* to specify the viewWindow min and the max, so that each time the chart is drawn, it wil

Re: [visualization-api] Re: Is it possible to format the percentage in the pie chart to 2 decimal places instead of one?

2014-05-21 Thread 'Daniel LaLiberte' via Google Visualization API
Mohmoud, You have conflicting format options. As the docs about the pattern option say: "When provided, all other options are ignored, except negativeColor." So your fractionDigits option is ignored. But you can get the equivalent of two decimal digits as part of your pattern by using: pattern:

Re: [visualization-api] Re: Is it possible to format the percentage in the pie chart to 2 decimal places instead of one?

2014-05-21 Thread 'Daniel LaLiberte' via Google Visualization API
he pie chard > displays it as 77.8 and 33.2 > I need to display more fraction digits in the "percentage" part > > > On Wed, May 21, 2014 at 2:32 PM, 'Daniel LaLiberte' via Google > Visualization API wrote: > >> Mohmoud, >> >> You have c

Re: [visualization-api] medir tiempo (HH:MM:SS) google chart

2014-05-22 Thread 'Daniel LaLiberte' via Google Visualization API
Could you give us a link to a public web page that shows the problem you are seeing? Then we could look in the code to see what is going wrong. 2014-05-22 14:29 GMT-04:00 murphy horta camargo : > Muy buenas tardes, alguien podría ayudarme a mostrar una gráfica basado en > time (HH:MM:SS) > actu

Re: [visualization-api] medir tiempo (HH:MM:SS) google chart

2014-05-22 Thread 'Daniel LaLiberte' via Google Visualization API
I think I understand you so far. However, I can't tell what you are doing that is causing the problem you are seeing, which is in the tooltip. If you could provide a link to a web page that shows the error, then we will be able to look at your code so we can see exactly what is happening. Either

Re: [visualization-api] medir tiempo (HH:MM:SS) google chart

2014-05-23 Thread 'Daniel LaLiberte' via Google Visualization API
It sounds like what you want to do is format your data values, not your axis tick values. I see you have an option that says "dateFormat: 'HH:mm:ss'" but it doesn't work that way. You have to either convert your date or time data into string data, or at least specify the formatted representation

Re: [visualization-api] medir tiempo (HH:MM:SS) google chart

2014-05-23 Thread 'Daniel LaLiberte' via Google Visualization API
Glad we could communicate well enough, and it worked out for you :) On Fri, May 23, 2014 at 4:45 PM, murphy horta camargo < murphy.hort...@gmail.com> wrote: > daniel thanks for your help, and I have the solution, wiht the link you > sent me, and several reading > > it's importan the formatter, s

Re: [visualization-api] Line Chart

2014-06-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
You didn't provide your data or options for us to look at, but since you indicate that the lines extend one month too far, I suspect you are using date values with months being one too high. That is, when you create Date values with new Date(, M, dd), the M values start at 0, not 1. This is

Re: [visualization-api] Line Chart

2014-06-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
column to a percentage > var formatter = new google.visualization.NumberFormat({pattern: '#%'}); > formatter.format(data, 4); // format column 4 in DataTable "data" > > //Use to convert the value in the 4th column to a percentage > var formatter2 = new google.vis

Re: [visualization-api] Re: AnnotatedTimeLine has quit working

2014-06-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Thanks for the update, and alerting us that active x filtering could cause this problem for others. On Wed, Jun 4, 2014 at 2:13 PM, 'Craig' via Google Visualization API < google-visualization-api@googlegroups.com> wrote: > Active X Filtering was interfering with the display of the timeline. I

Re: [visualization-api] Line Chart

2014-06-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
47 PM, Isaac Sogunro wrote: > Thanks! I will look into your suggestion. > > > On Wed, Jun 4, 2014 at 12:13 PM, 'Daniel LaLiberte' via Google > Visualization API wrote: > >> Since you are not using the Google Chart date type, you should look into >> wha

Re: [visualization-api] Line Chart

2014-06-04 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
1600/LineChart3.PNG> > > > On Wednesday, June 4, 2014 4:04:39 PM UTC-4, TheInnovator wrote: > >> Thanks! >> I can't stop banging my head on that issue now. haha.. >> >> >> On Wed, Jun 4, 2014 at 4:02 PM, 'Daniel LaLiberte' via Google &g

Re: [visualization-api] Multiple google pie charts not working in < IE8.

2014-06-10 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Amol, If you are using this success handler more than once, you will likely have unpredictable problems with it because of two main problems: You have several global variables that, when you assign to them, the values will replace previous values: data2, aP, bP, cP, dP, and maybe more. Moreov

Re: [visualization-api] b[le] is not a function -- issue

2014-06-11 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Misbah, The code you included is not complete enough to tell why you are seeing the error that you reported, but I can see one potential problem just by inspection. You are using a categoryPicker that is not defined. Maybe you have it defined outside of this drawVisualization function, in whi

Re: [visualization-api] b[le] is not a function -- issue

2014-06-11 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Thanks for posting your code, but this can't be your entire code because the call of the drawVisualization must include arguments that provide the data and columns. I tried to make up some data that looks like what you expect, and I don't see the problem you are reporting, so it might be there is

Re: [visualization-api] b[le] is not a function -- issue

2014-06-12 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
I'm not quite sure what you are trying to do, but I see the source of the problem. In your table 'ready' handler, you are setting the table of the line chart and drawing it, with this code: line.setDataTable(groupedData); line.draw(); Commenting out th

Re: [visualization-api] form select multiple parameters connection DB

2014-06-13 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Vincenzo, When you call google.setOnLoadCallback() it always takes a function, not a function call and setOnLoadCallback always calls that function with no arguments. Sounds like you might be stuck, except you can create another function that calls your drawChart function with one or more argumen

Re: [visualization-api] Re: Display the value of a point even if not focusing on it

2014-07-07 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
A new 'chart' option will let you fix this yourself now by adding this to your options: options = { 'chart': { 'focustTarget': 'category' } } I will make this default in a future verison. Thanks for reporting it. On Mon, Jun 30, 2014 at 1:56 PM, Andrew Gallant wrote: > There are no

Re: [visualization-api] Re: Is there a way to destroy a chart ? or redraw it in a clean way ?

2014-07-11 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Yaniv, The growing extra hidden nodes would appear to be a bug, so thank for speaking up about it. The details of your chart and data could make a difference here, so if you wouldn't mind, it would help if you could point to a live page that demonstrates the problem. It might be that calling cle

Re: [visualization-api] Independent series on an Annotation Chart

2014-07-29 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Yes, this option is in the current release (1.0). It only applies to the main chart, but if you need the same thing for the range selector, there is another option for that. How are you using this option? I was a bit vague in my last message. Within the option structure that you provide to the

Re: [visualization-api] clearChart() undefined for Annotation Charts

2014-08-06 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Willie, Sorry to hear about your experience, but thanks for reporting what you found. You are quite correct that the function named 'clearChart' is not available, and similarly, 'getContainer' is supposed to be available, but is also missing. These problems will be fixed in the next release.

Re: [visualization-api] XY line charts (or XY charts with connected points)

2014-08-12 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Bryan, This has been accomplished (long ago) in a couple different ways. 1. There is a ScatterChart which allows you to plot rows of independent x-y points with continuous values for both x and y, and you can optionally connect the adjacent points with a line. 2. The LineChart allows the domain

Re: [visualization-api] Re: Annotation Chart stability

2014-08-13 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Another release, due out within a couple weeks, will have a few more fixes to the AnnotationChart. I've addressed most of the compatibility issues relative to the annotatedTimeline chart, and it seems fairly stable now. There will be more changes in the future to continue to generalize it and add

Re: [visualization-api] Scatter chart with data points showing number of data per date/month/year. On zoom of the data point it should scatter into sub data points

2014-08-18 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ananya, Sorry for the delayed response. Using explorer mode with timeofday should now be working. There were some bugs that got fixed in the meantime. On Tue, Jun 10, 2014 at 9:11 AM, Ananya wrote: > Can I have scatter like with points like > https://03216454500425590576.googlegroups.com/att

Re: [visualization-api] Re: Range selector Annotation Chart

2014-08-18 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The AnnotationChart uses a ChartRangeFilter for the range selector, and there is actually an undocumented option that controls whether to do this auto-zooming of the range selector, when the selected range is small enough. I tried changing this option, but it is not behaving as expected, so there

Re: [visualization-api] Re: Range selector Annotation Chart

2014-08-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Fixing the option to disable auto-zooming of the ChartRangeFilter should be relatively easy, since it is about disabling functionality. But I don't yet know why it is not working, and other things will tend to take higher priority, so I don't want to promise anything right now. There are some mor

Re: [visualization-api] Hiding few Zoom buttons in Annotation Chart

2014-08-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
There is a new feature coming out in the next release that will let you configure the zoom buttons. You can use this now if you load version '1.1'. Here is a summary of how to use it. There are two options, 'zoomButtons' and 'zoomButtonsOrder'. The zoomButtonsOrder value is just an array of str

Re: [visualization-api] Chart Range Filter - hAxis label positions

2014-08-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Did you try using it like this: options: { ui: chartOptions: { hAxis: { textPosition: 'out' } } } See chartOptions on https://developers.google.com/chart/interactive/docs/gallery/controls#chartrangefilter On Tue, Aug 19, 2014 at 9:13 AM, Shivani Kanakhara wrote: > Cannot position the labels

Re: [visualization-api] Chart Range Filter - hAxis label positions

2014-08-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ah, well the problem is probably that there is no space outside the chart area for the axis labels. You'll have to also experiment with the height, chartArea.height, and chartArea.top options to leave enough space on the bottom for the axis labels. On Tue, Aug 19, 2014 at 10:07 AM, Shivani Kanak

Re: [visualization-api] Re: Chart Range Filter - hAxis label positions

2014-08-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
I set the control's ui.chartOptions.chartArea.height and increased the height, and it seems to work fine: http://jsfiddle.net/dlaliberte/0wb2zvye/ On Wed, Aug 20, 2014 at 2:17 AM, Shivani Kanakhara wrote: > Hello, i tried changing the chartArea options (height,top,bottom)..still > cannot get to

Re: [visualization-api] Re: Chart Range Filter - hAxis label positions

2014-08-20 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
There is an undocumented "range" option for the AnnotationChart which you can use to control the range selector options. For example, the following will move the tick labels to the outside position: { "range": { "ui": { "chartOptions": { "height": 80, "chartA

Re: [visualization-api] Re: Charts returning QR code instead of line graph

2014-08-26 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Matthew, I see a line chart just fine. Could you ask a few other people in your network neighborhood to try it? It is possible that I don't see the problem while you do because it is caused by a network hack somewhere between you and Google. Perhaps there is a proxy server that your requests go

Re: [visualization-api] Adding tooltips in Annotation Charts

2014-08-28 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Currently the AnnotationChart is limited to doing just what the old flash-based AnnotatedTimeline chart did. The datatable is limited to the same format as well, which doesn't allow for tooltips. Next steps will further generalize this base functionality, and unify the datatable format with that

Re: [visualization-api] Using Annotaion charts with dashboards and chart wrapper

2014-08-28 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
You should be able to use an AnnotationChart in a Dashboard, and it should work just like other charts in a dashboard. Let us know of any issues you discover. On Thu, Aug 28, 2014 at 2:39 AM, Shivani Kanakhara wrote: > Can we combine AnnotationChart with Dashboard? or bind AnnotationChart > wi

Re: [visualization-api] Adding suffix to legend values in Annotation charts

2014-08-28 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
It sounds like you want to use the numberFormats option. Will that work? https://developers.google.com/chart/interactive/docs/gallery/annotationchart On Thu, Aug 28, 2014 at 2:53 AM, Shivani Kanakhara wrote: > Can we add suffix to legend values in Annotaion charts? > > Also i would like if w

Re: [visualization-api] Same information different indication

2014-09-01 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Schabagh, It is more likely that the data you provide to the chart is actually changing in some way. If you are sure the data comes in the same every time you reload the browser page, including the order of the data, then you may have some time-sensitive aspect of your code that depends on, fo

Re: [visualization-api] Re: Updating chart causes it to shrink

2014-09-02 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
There is a flaw in the gauge chart in which, if you don't specify a fixed size container, repeated redraws will shrink the height and width by 4px each time. The problem involves the cellpadding on the table which is 2px. We can remove it, but I'd like to move the padding to another place where i

Re: [visualization-api] Explorer Mode in Line Charts doesn't scale data when logScale is set to true

2014-09-02 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Jason, You are correct that the explorer mode does not currently support use of the logScale. And your idea for how to handle explorer mode with logScale has merit. We'll have to see if we can implement something like that. On Tue, Sep 2, 2014 at 2:24 PM, Jason Smith wrote: > The title sa

Re: [visualization-api] Problem with minValue and maxValue for vAxes in combo chart

2014-09-05 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
It appears your chart is doing what you described, so it is not clear what you want it to do that is different from that. I assume the red line is using the right-side axis and the bars are using the left-side axis. On Fri, Sep 5, 2014 at 9:13 AM, Alexandre Carrie < alexandre.car...@ipa-consultin

Re: [visualization-api] Problem with minValue and maxValue for vAxes in combo chart

2014-09-05 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The minValue option is probably not doing what you assumed. It only specifies a value that is effectively added to your data, so the chart ensures that the minValue appears in the chart, but it doesn't mean the axis will go no lower than the minValue. However, the viewWindow.min option will do wh

Re: [visualization-api] Problem with minValue and maxValue for vAxes in combo chart

2014-09-05 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
You will have to specify the same viewWindow for *both* of your vAxes that should have the same viewWindow. Or you could *add* another option which is just the vAxis (rather than vAxes) as I said before. On Fri, Sep 5, 2014 at 11:05 AM, Alexandre Carrie < alexandre.car...@ipa-consulting.fr> wrote

Re: [visualization-api] Problem with minValue and maxValue for vAxes in combo chart

2014-09-05 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
If you add the vAxis.viewWindow.min option, you would have to remove the viewWindow.min option from each of the vAxes, otherwise they override. So now it appears that in the chart you attached, the lowest axis values are be the same value of -15 in both axes. However, now you probably want to dea

Re: [visualization-api] Problem with minValue and maxValue for vAxes in combo chart

2014-09-08 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
If the axes on the left and right have different scales, then you can only align 1 value between them. Since you want 0 to be aligned, here is how to work it out. You want your right-side axis to range between -15 and 150, and since 15, distance below the 0 value, is 1/10 of 150, then you need y

Re: [visualization-api] Chart Editor

2014-09-08 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hello Amir, What part of the chart editor API are you interested in using? Since the chart editor IS a dialog, I wonder how you were thinking of using it without opening the dialog. On Mon, Sep 8, 2014 at 4:08 AM, Amir Bashan wrote: > Hello, > I read the API of the chart editor >

Re: [visualization-api] Chart Editor

2014-09-08 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ah, interesting idea. It might be we could support an inline version of the editor, rather than always putting it in a dialog that overlays the chart. We don't have anything like that now, however. On Mon, Sep 8, 2014 at 9:37 AM, Amir Bashan wrote: > Hi Daniel, > I'm interested in anything it

Re: [visualization-api] JSON datetime on AnnotationChart

2014-09-08 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The string-formatted date, as you appear to be generating, should work with "JavaScript Literal" datatable. Your datatable should look something like this: var data = new google.visualization.DataTable( { cols: [{id: 'task', label: 'Employee Name', type: 'string'}, {id:

Re: [visualization-api] Basic question about visualization chart

2014-09-12 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
That's an AnnotationChart, which is a built-in chart type. The docs are here: https://developers.google.com/chart/interactive/docs/gallery/annotationchart On Fri, Sep 12, 2014 at 3:43 PM, Cycles Guy wrote: > I'd like to add a chart like this social mentions one to my blog: > http://www.viralne

Re: [visualization-api] Basic question about visualization chart

2014-09-12 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
It looks like this is the code they used: http://www.google.com/jsapi";> google.load('visualization', '1.1', {'packages':['annotationchart']}); google.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.a

Re: [visualization-api] AnnotationChart rendering issues in Angularjs

2014-09-12 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
There was a bug in earlier versions that didn't clear out old renderings of the chart when you redraw. I suspect that is what is going on for you. If you can use the latest candidate release by loading version 1.1 in your google.load(), then I suspect your problem might be solved. On Fri, Sep 12

Re: [visualization-api] Annotation Chart slows down for large amount of data

2014-09-15 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Shivani. I am actually working on a number of performance issues that I hope to resolve before the next release. The best suggestion I can offer to work around this deficiency is to do your own filtering ahead of time so the AnnotationChart never sees more than 1000 rows. On Mon, Sep 15, 2014

Re: [visualization-api] bad yaxis in the annotated timeline chart SVG

2014-09-15 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi George, You should use the scaleFormat option and set it to something like '#.###'. This should probably be the default value so this problem doesn't come up so often. Thanks for raising it. On Mon, Sep 15, 2014 at 3:43 AM, George Michaelson wrote: > I have data which is values in the rang

Re: [visualization-api] Annotation Chart slows down for large amount of data

2014-09-15 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
We are aiming for a one-month release cycle. The previous cycle is almost finished, so we anticipate starting the next cycle in a week or two. On Mon, Sep 15, 2014 at 9:44 AM, Shivani Kanakhara wrote: > Ok so around what date is the next release coming?? Will it be in few > weeks? > > On Monday

Re: [visualization-api] Unneccessary x-axis scrollbar on tables when height is set

2014-09-17 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Jason, You can specify a width as well in the options, and experiment until you find a combination that works for your data. However, that is not a satisfactory answer if your data varies each time it is viewed. I've actually been doing a lot of work on the table chart sizing, and finally got it

Re: [visualization-api] plotting small value using ColumnChart

2014-09-17 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ronneil, You might want to look at the log scale option, especially if you have more tiny values that large values. However, we should be able to show even a zero value for the column and bar chart, with a minimum bar length of 1 pixel. Look for it in a future version of the charts. On Wed, Sep

Re: [visualization-api] Unneccessary x-axis scrollbar on tables when height is set

2014-09-18 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
If there is no width that is large enough, then I guess it just won't work. I am curious to see the page with your chart that shows this problem, just to make sure the new version will work with it. It is possible that other styles on your page are affecting the table layout in ways that may be

Re: [visualization-api] Annotation chart

2014-09-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Perhaps what you want is the interpolateNulls option, which you can add under the 'chart' option: options = { chart: { interpolateNulls: true } } If this doesn't do what you want, it would help if you could provide a link to the page with your chart, so we could look into the data and options y

Re: [visualization-api] Unneccessary x-axis scrollbar on tables when height is set

2014-09-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Jason, Thanks, but I can't tell what is going on just from an image and the source that needs to be interpreted by your server. I can make some guesses, or things to look into, however. The table is already very tight regarding the amount of data being displayed in that space, though it looks li

Re: [visualization-api] Unneccessary x-axis scrollbar on tables when height is set

2014-09-19 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
OK, thanks for investigating. We'll have to keep an eye on this as new versions of Google Charts are rolled out. On Fri, Sep 19, 2014 at 3:37 PM, Jason Lu wrote: > Also, I just tried the site in Firefox, and it seems like this bug is > Chrome specific. I was able to get the table without the ho

Re: [visualization-api] Re: How can I align left and right vertical axes?

2014-09-22 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Al, we don't have a solution for this yet. The current software design doesn't allow for this kind of alignment constraint between otherwise independent axes, so even after we decide on how we would want to specify the constraint, the implementation will require a significant redesign. We'll get th

Re: [visualization-api] Re: Values inside category filter flow out..how to wrap the values?

2014-09-22 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Shivani, I suspect you are making some changes to the CSS of the page containing your category filter that affects the category filter rendering. If you can't figure out what that is, give us a link to the page and we can take a look. On Mon, Sep 22, 2014 at 3:50 AM, Shivani Kanakhara wrote: >

Re: [visualization-api] Re: Values inside category filter flow out..how to wrap the values?

2014-09-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Thanks. You are correct that this is a bug, which we will fix. There is a hard-coded width for the .charts-combobox .charts-menu of 219px that doesn't work out for the width of your category labels. It appears you can override this setting by adding this style: .charts-combobox .charts-menu {

Re: [visualization-api] [Help] Annotated Timeline chart blink(flash) when new data updated

2014-09-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Le Thanh Treiu, You should probably try to use the new AnnotationChart, which does not use flash, but makes use of the corecharts like the LineChart. See the documentation at: https://developers.google.com/chart/interactive/docs/gallery/annotationchart Let us know how it goes, and if repeated

Re: [visualization-api] [Help] Annotated Timeline chart blink(flash) when new data updated

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
You can use the zoom buttons in the upper left corner, but you are correct that the mouse wheel is not supported yet in the AnnotationChart. This is something we can fix fairly easily, however, so you should expect to see it soon, probably within a month. On Tue, Sep 23, 2014 at 9:16 PM, Le Thanh

Re: [visualization-api] [Help] Annotated Timeline chart blink(flash) when new data updated

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The LineChart will zoom and pan axes as long as you are not using 'discrete' values. It sounds like you are translating your dates or times for your horizontal axis into string values, but if you do, you cannot yet zoom or pan along that axis. On Wed, Sep 24, 2014 at 9:20 AM, Le Thanh Trieu wrot

Re: [visualization-api] Re: Displaying broken line

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ronnell, There are a couple ways to interpret your question. The 'interpolateNulls' option controls whether rows with missing or null values will be rendered by interpolating across the gap for line and area charts. It should default to false, so I suspect you have this option set to true. If y

Re: [visualization-api] [Help] Annotated Timeline chart blink(flash) when new data updated

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
I am not seeing any chart on that page. This is probably because you have access restrictions on the spreadsheet data, so the chart fails to draw for me even though you can see it. I believe I understand your question, and my answer is the same, which I will restate with a little more detail. Th

Re: [visualization-api] [Help] Annotated Timeline chart blink(flash) when new data updated

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
I see your charts now, three of them. You are still using the annotatedtimeline chart, which I thought you were going to replace with the AnnotationChart. The mouse wheel zooming and mouse panning seem to work fine for the other two charts. The annotatedtimeline chart zooms the horizontal axis b

Re: [visualization-api] [Help] Annotated Timeline chart blink(flash) when new data updated

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
What happens if you replace the annotatedtimeline chart with the AnnotationChart? On Wed, Sep 24, 2014 at 11:56 AM, Le Thanh Trieu wrote: > yes Sir ! > I want draw a chart like Timeline chart because Timeline blinking when my > Sheet have new data. If you know how to Timeline auto drawing withou

Re: [visualization-api] 24 hour time format for continuous date format x-axis line chart

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
John, We actually do have more formatting options for the date and time axes, but they are, as of yet, undocumented. We should probably make the format option work as you guessed as well, at least as a fallback. Here is a sneak peak of how to use the new format options to do what I believe you

Re: [visualization-api] Re: Displaying broken line

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
So you want to set interpolateNulls to false, so it doesn't interpolate the nulls between non-null values. On Wed, Sep 24, 2014 at 1:51 PM, Ronneil Camara wrote: > Hi Daniel, > > Yes, I do have interpolateNulls set to true. However, it's still showing > the line connection from 11am to 2pm. > >

Re: [visualization-api] 24 hour time format for continuous date format x-axis line chart

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Yes, each set (e.g. "minutes", "hours") is for the different resolutions of the value. Look for the smallest non-zero part of the value to decide which resolution applies. So "hours" applies to 3pm but "minutes" applies to 3:15pm. On Wed, Sep 24, 2014 at 2:32 PM, John Beranek - PA < john.bera...

Re: [visualization-api] 24 hour time format for continuous date format x-axis line chart

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
I believe these options should be available now just by loading "1.0". You could try "1.1" but it shouldn't make a difference for you. If you can point me at page that shows your chart, I can take a look. On Wed, Sep 24, 2014 at 2:50 PM, John Beranek - PA < john.bera...@pressassociation.com> wro

Re: [visualization-api] Re: Displaying broken line

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
This should be working, so I suspect something else is going on in the page. Can you give me a link to the page so I can see this in action? On Wed, Sep 24, 2014 at 2:38 PM, Ronneil Camara wrote: > I've set it to false but it's still connecting them. > > googleChart.options = { > di

Re: [visualization-api] Re: Displaying broken line

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Since the default for interpolateNulls is false, then the problem with ng-google-chart might be that it always adds the option with value true, thus overriding your option. On Wed, Sep 24, 2014 at 3:23 PM, Ronneil Camara wrote: > I created a ticket on ng-google-chart. Hopefully, I'll get a respo

Re: [visualization-api] 24 hour time format for continuous date format x-axis line chart

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Yes, this is a flaw in the current formatting mechanism, that it doesn't include a context value, such as the day and month at least once. Making the format of this context value be customizable is part of the issue. The best you can do now is, if you know what the context is, add it to your axis

Re: [visualization-api] Re: Displaying broken line

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Ah, now it is clear that we had a misunderstanding. You don't have null values. You just have a gap with no values, no rows of data between 2am and 5am. Since the chart has no way of knowing that you are expecting uniform data, it can't guess that you want a gap there. But if you can add null ro

Re: [visualization-api] Re: Displaying broken line

2014-09-24 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Glad it works. I should have asked for clarification earlier on that point. On Wed, Sep 24, 2014 at 5:01 PM, Ronneil Camara wrote: > It works! :D Thanks a lot > > WOOHOO!!! > > On Wednesday, September 24, 2014 3:50:22 PM UTC-5, Daniel LaLiberte wrote: >> >> Ah, now it is clear that we h

Re: [visualization-api] [Help] Annotated Timeline chart blink(flash) when new data updated

2014-09-25 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
You could try the 'allowRedraw' option, but since you are changing your data for each redraw, I am not sure this will work for you. We are not working on the AnnotatedTimeline chart any more, so if this doesn't work, you are out of luck with this chart. If you otherwise like the AnnotationChart,

Re: [visualization-api] Table with BarFormat in dashboard doesn't render?

2014-09-28 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Anthony, You want to put the chart options in an "options" option for the chart wrapper, so your 'allowHtml' option will be used by the chart. https://developers.google.com/chart/interactive/docs/reference#chartwrapperobject On Sat, Sep 27, 2014 at 6:51 PM, AM wrote: > > > I have a table cha

Re: [visualization-api] Why date values are repeated on horizontal axis in Webkit browsers?

2014-10-03 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
I wonder about the UTCYear solution, though. What will it show when UTC has crossed the year boundary but the local date has not? I think the whole thing about showing local dates and times is wrong. The data should specify the location where a date applies, and we shouldn't assume the local dat

Re: [visualization-api] Pie Chart suddenly stop working for chrome

2014-10-07 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Mael, We are in the process of rolling out a new release, so when you load '1.0', you now get the new version. We try to avoid bugs by staging the rollout to find out if anyone is affected. Your report is the first problem we have heard, so we are very interested to find out what might be causin

Re: [visualization-api] Pie Chart suddenly stop working for chrome

2014-10-07 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
It does look like we have a problem. We are going to rollback, so this problem should clear up in a couple hours. As we debug the problem and prepare a new candidate, you can test this also, if you want, by loading "1.1" instead of "1.0". Thanks. On Tue, Oct 7, 2014 at 4:43 PM, Mael Caldas wr

Re: [visualization-api] White Shadow Around hAxis Labels

2014-10-07 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Pasha, There is a new 'auraColor' option that you can include in any of the 'textStyle' options to control this shadow color. It may be that the auraColor ought to be the same as the background color, even if it is transparent. We'll have to check why it is white and decide whether that is co

Re: [visualization-api] White Shadow Around hAxis Labels

2014-10-07 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Glad to hear it. On Tue, Oct 7, 2014 at 8:25 PM, Pasha Bitz wrote: > Oops, scratch that last comment, the auraColor property is working fine. > Thanks! > Pasha > > > On Tuesday, October 7, 2014 5:17:25 PM UTC-7, Pasha Bitz wrote: >> >> Thanks Daniel! >> I see that the change is reverted. >> Howe

Re: [visualization-api] TableChart is showing full screen or How to setup width to 100%

2014-10-08 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Rajiv, There should be a 'width' option that you can set to '100%'. I can't see the App page you linked to, not without your permission, which I requested. But since it is an AppsScript app, you might need to ask the AppsScript folks for how to set the option, if you can't figure it out from the

Re: [visualization-api] TableChart is showing full screen or How to setup width to 100%

2014-10-08 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
OK I looked, but I can't make any sense of the generated code (in the browser). You'll need to find out how AppsScripts should let you specify the options for the chart, and include that 'width' option On Wed, Oct 8, 2014 at 7:55 PM, Daniel LaLiberte wrote: > Rajiv, > > There should be a 'width

Re: [visualization-api] Dynamically update dashboard

2014-10-11 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hans, What you are doing sounds like it should work. Perhaps there is a javascript error which stops all processing before the second dashboard.draw(dt) call. If you can provide a link to a page with your dashboard, we could take a look at the code. Or if that is not possible, maybe you can pro

Re: [visualization-api] Google Charts animation

2014-10-14 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Tim, We don't support any other easing functions at this time, though it wouldn't be hard to add more. Which ones would you find most useful or essential? Or do you need a custom function? On Tue, Oct 14, 2014 at 11:10 AM, Tim Voronov wrote: > Hi there, > > does anybody know whether it’s p

Re: [visualization-api] Re: Missing Vertical line on the column chart y axis left most

2014-10-16 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi karthikeyan, Here is a bit more detail about what Andrew alluded to. No vertical gridlines are shown for the horizontal axis when discrete (or string) values are used, not even for the line where you would think the vertical axis line should be, which is also usually the baseline. If you want

Re: [visualization-api] Google Charts animation

2014-10-16 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Pavel, We plan on supporting a variety of startup animations at some point. The current code base has a number of issues that limit our choices, but we may be able to add at least one form of the startup animation. One complication, if you want to try doing this yourself, is that if you displ

Re: [visualization-api] Area Chart - Change vAxis direction, but dont reverse filled area

2014-10-21 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hey Joe, You can set the baseline value for the vAxis, which is used by the area chart to control what the area is relative to. It should default to zero. On Oct 21, 2014 5:04 AM, "Joe" wrote: > Hi All, > > Is it possible to set an area charts vAxis direction to -1 and keep the > "filled area"

Re: [visualization-api] Re: Can i show number value to the baseline column

2014-10-22 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Bill, We don't have any support for drawing axis labels on the baseline positioned in the middle of the chart. It looks like a reasonable idea for this kind of application, however, so I expect we will support it some time in the future. On Wed, Oct 22, 2014 at 9:02 AM, Bill Do wrote: > Dea

Re: [visualization-api] Failing to render - Line chart via google spreadsheet

2014-10-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi misbah, I'm not seeing a syntax error, but I am seeing the google.load() call failing because you haven't loaded the jsapi library first. Add to the External Resources section (on the left) this URL: http://www.google.com/jsapi That will get you further along. You didn't give public access

Re: [visualization-api] Blurry Charts?

2014-10-23 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The two charts in figures 10 and 11 look the same to me, but 14 and 15 do look different. We do position the bars at whole pixel boundaries. But if a stroke width is drawn around the bars, half of the stroke will be drawn outside the rectangle and half on the inside. So if the stroke width is an

Re: [visualization-api] Re: How to remove the X,Y axis grid lines on Column chart

2014-10-28 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
The vertical gridlines are actually associated with the horizontal axis, since they are based on where the horizontal ticks are placed. So you need to specify your gridlines.color option in the hAxis options rather than the vAxis options. This is a frequent confusion, and we are wondering if ther

Re: [visualization-api] Re: Can I use ChartRangeFilter for Timeline charts

2014-10-30 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Mael and Nick, We rolled out a new v40 yesterday, but the rollout itself failed to complete, so we are rolling it back. There is very likely an inconsistency in the state of the deployed code during this transition, which we would of course like to avoid, but we can't fix that with the current

Re: [visualization-api] Re: Charts suddenly stopped working in production

2014-10-30 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Hi Mael and Nick, (I meant to post this here rather than in the other thread) We rolled out a new v40 yesterday, but the rollout itself failed to complete, so we are rolling it back. There is very likely an inconsistency in the state of the deployed code during this transition, which we would of

Re: [visualization-api] Re: Charts suddenly stopped working in production

2014-10-30 Thread &#x27;Daniel LaLiberte&#x27; via Google Visualization API
Chris, Regardless of whether the rollback has completed, what you are seeing sounds like it is related to a new feature that doesn't work well with your black background. You can override the auraColor of the axis title and labels to make it 'transparent' like so: hAxis: { textStyle: { aur

  1   2   3   4   5   6   7   8   9   10   >