8,993 questions
4
votes
1
answer
64
views
Moving annotations on Column Chart with Negative Value Google Chart
I am using google charts and I need to chart pos/neg values with annotations. The negative annotations show up by the axis.
Is there a way to switch the -0.95 annotation to below the blue column?
...
1
vote
2
answers
127
views
How to set the chart background colours when using dark mode (screen only)
Please see this fiddle:
google.charts.load("current", { packages: ["corechart"] });
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization....
0
votes
2
answers
56
views
Google pie chart displaying vertically not horizontally when loaded by ajax
simple pie chart example from google chart displaying pie chart vertically when onclick loaded by ajax , when same code loaded in simple web page displaying horizontally.
<script type="text/...
0
votes
1
answer
50
views
Is there a way to have Google Gantt Chart working with hours/minutes/seconds
I tried to set my columns type for Start Date and End Date to datetime type but I always receive this error :
Invalid data table format: column #2 must be of type 'date'.
(Where column 2 is Start ...
0
votes
1
answer
42
views
GoogleChart fetch data from server when zooming or paning inside the LineChart
I try to implement a Google Chart displaying sensor value in a time line. I want to have the min, max and average value in the graph (min and max is a filled interval). But I want also the chart to be ...
1
vote
2
answers
121
views
Exception thrown when attempting to read Chart.ChartOptions for existing chart
I'm trying to programatically modify an area chart within a Google spreadsheet. I want to read the existing chart's options like so; the string values in AREA_CHART_PROPS have been taken from Google's ...
1
vote
1
answer
60
views
Custom tooltips not displayed for all lines
I created a dashboard using Google Charts and wanted to annotate data by using custom tooltips. But I only manage to display my custom tooltips for the latest created line (line of plot87 in JSFiddle),...
1
vote
1
answer
42
views
Google Visualization Gauge Change Label Position
I am attempting to move the gauge label above the visualization.
My attempt to use $("#Min svg text:first").attr("y", 5); resulted in the label being chopped off on top. I've ...
3
votes
4
answers
664
views
How can I color the increasing and decreasing slopes on a line chart?
I'm creating a line chart in Google Spreadsheets. How can I display the increasing and decreasing sections in different colors?
I am attempting to do this by creating auxiliary columns with formulas ...
-1
votes
1
answer
129
views
Trying to create MULTIPLE dynamic chart titles
I'm using the following Apps-script, google extension:
/**
* Function to automatically change chart title
*/
function changeChartTitle() {
// get the chart
// assumes only one chart, adjust the index ...
1
vote
1
answer
21
views
grid lines not showing behind transparent bar in google bar chart
In the tornado chart I have 4 data columns , whereas the first one is white in order to create the look of the tornado chart.
Now the problem is that the gridlines are not showing because of the ...
0
votes
1
answer
53
views
how to display 2 google charts inline
I'm using google chart tools to display two piecharts one to the left and the other to the right,
Before creating dynamically the div container using the DOM, it worked with bootstrap classes like ...
0
votes
1
answer
74
views
Google Annotation chart Invalid date, or date and time error
I am having problem in formatting the date column for Google Annotation chart. I am following this link https://developers.google.com/chart/interactive/docs/gallery/annotationchart
My Data for ...
1
vote
1
answer
106
views
Clear Selectable Element Filter using JQuery Button
I am following the below answer for my charting scenario, I have no problem in expected functionality like rendering the chart, filtering the charts.
Editing Google Charts Category Filter
My Problem ...
2
votes
1
answer
154
views
AppScript throwing Exception error of Spreadsheets when trying to access Charts present in a Google Sheet
I am running the below code
var reportSheet = SpreadsheetApp.openByUrl("https://docs.google.com/spreadsheets/d/1HWg9ip6iC7wnw9e80IpM6ISKslMbtO591SLoKHTQGms/edit");
var reportStudentGraph = ...