Google Sheets Custom Gauge Chart - charts

Is it possible to use a cell value as the MIN/MAX values within a gauge chart? At the moment if I set the value so anything other than an integer value it gets cleared the sec I move away from the input field.
I've looked into other customization options but all the documentation for coding custom values for charts seems to be when using the draw api on a custom app or webpage. In this instance I'm just trying to customize and embed the charts within the current working spreadsheet.
Appreciate any help or insight the community may have cause my searching is returning NULL.

No. Try and enter anything other than a number and a warning message appears:
Must be a number.

Related

Google Visualization Chart Stopped Working

I have created a dashboard which uses JSON data to create several different kinds of google visualization charts. This dashboard has been working perfectly for two years. Just in the past day or so, the column chart and the line chart give a "Cannot read property 'Do' of undefined" error while my tables and maps continue to work. I have checked all of the most recent records to make sure there is nothing that could be undefined and I have found no issues. I've checked my arrays in the console and they all look correct. I've also checked the chart objects in the console just before drawing and they are properly populated, so I am stumped. Can anyone help me figure out what could be happening?
load google charts with a saved version (a.k.a. Frozen Charts Version)...
google.charts.load('50', {
when implementing a page or application,
always use a saved version of google charts.
this way, changes to the 'current' version can't mess with your code.
you can find a list of the saved versions at the following link,
along with the changes that were implemented...
https://developers.google.com/chart/interactive/docs/release_notes#version-history

Use different date format on Google Sheets chart?

I am sampling data twice a day and sending it via IFTTT to Google Sheets. All working well but ideally I would like the date format on the chart to be different to that in the sheet and I can't see an obvious way to do that other than to create another column in the sheet. See attached, is it possible to have the date without the time on the chart?
Thanks!
This is possible using Google Charts, or the Charts Service of Apps Script.
The documentation on Google Visualizations has many examples, its not straight forward at first, but with a couple of examples you'll get the hang of it and tailor your chart to your desired output.
In your case, the hint is to modify the horizontal axis format.
See this example to start with: https://developers.google.com/chart/interactive/docs/datesandtimes#formatting-axis,-gridline,-and-tick-labels

=sort filter including minimum value Google Spreadsheet

I hope you can help me. At this moment I am busy with creating a presentation with an auto updated graph. In this graph I will show the top 5 latest scores of people that are attending a competition. The values will be added via a google form but the score will be added later in the google spreadsheet.
The problem at this moment is that it also shows input with '0' value. I need to have the values visible once it is higher than '0'.
Does anyone know how this is possible to manage? :)
See example here: https://docs.google.com/spreadsheets/d/1cld9sU51Xf78fR14RH7gGlPNkz1Z7732DD5leQwweb4/edit?usp=sharing
Thanks!
KR Sami

Is there a way to get the names/ ID's of all sheets within a spreadsheet?

I want to know either all sheets name or ID number in a specific spreadsheet, but I cannot find anything that will help me. There are many people who have done this in other languages other than swift, but swift is unique in the way it uses and handles the google sheets API. I do not even know how to get started. Is there anything anyone has that can help?
I don't know where to start, and I am having a lot of trouble with this. I want to be able to use a dropdown menu (from iOSDropDown) to select one of the existing sheets, but I need a way to find the sheets name or ID. People have done it in JavaScript, but there is literally almost no support for swift on the internet. I have already been through the sheets API's hundreds of times, and I have searched through stack overflow and other places as well.
I do not have any results.
To get the names, I ended up having a number on the sheet that I add one to every time and I put the name of that sheet right below the last sheet.

Get Drill down URL from FusionCharts events

I'm working with FusionCharts (specifically a column chart). The chart is created from a rest endpoint that outputs chart xml. The endpoint also encodes xml-urls into the chart for drill-down. I want to capture these urls in order to change the contents of the surrounding form (to make it appear the parameters chosen generated that chart).
The problem I'm running into is that the BeforeLinkedItemOpen and LinkedItemOpened events do not contain the url the chart is pulling its xml from.
The LinkedChartInvoked event does contain this information - its just only called navigating the first level of the drill-down.
I have five levels of drill-down, so that won't work. Anyone know of a way to get the information I'm looking for?
I never did find an answer for this. It appears that FusionCharts simply does not report this information and I could not do what I was trying to do.