Google Sheets - toggling chart visibility - google-sheets

Is there any chance to toggle chart visibility?
Just annoying the empty Chart with big "NO DATA".
Have a nice Sunday!

Related

Google Sheets Chart Axis Title does not update when source cell is formula

I want the Google Sheets chart x-axis title to change when the data in a chart changes. I've made a simple example to demonstrate the problem. In the following animated gif (click to see greater detail) the x-axis title does not update when the data in the scatter chart changes.
Apparently this happens because the source cell for that title (A1) is itself a formula (to give the average of the x-values -- in my real-world example, it's more complicated than that).
The only way I know to fix this is to delete the chart and make a new one, as shown in the last part of the animation. But with my real-world example, this is a lot more troublesome.
Thanks for any help.
I have been running a couple of tests and have some experience on how the charts are created under Sheets in comparison to the ones in Excel.
There have been multiple forums discussing this particular issue, the main issue with it is the fact that this portion of the Chart is only a title text and does not linked to any portion to the table or that you cannot select a custom formula to be used for updates. It is also mentioned over the official documentation that you can only manual edit this titles.
As an alternative, you could implement a script so it changes the chart title for the average.
function onOpen(){
SpreadsheetApp.getUi().createMenu('Charts').addItem('Update title of the first chart from active cell', 'myFunction').addToUi();
}
function myFunction() {
var sheet = SpreadsheetApp.getActiveSheet();
var chart = sheet.getCharts()[0];
chart = chart.modify()
.setOption('title', sheet.getActiveCell().getValue() || 'Empty')
.build();
sheet.updateChart(chart);
}
The portion of this code has been found and discussed over this thread.
I also believe that it should be a feature directly on Sheets and it should be implemented in the future, you can send feedback from the help option or go to the Feature ideas portal:
https://www.googlecloudcommunity.com/gc/Feature-Ideas/cmp-p/grouphub:workspace-ideas-group

Google sheets built in charts style limitations

I created a candlestick chart with the "insert chart" option of google sheets.
Though, I noticed that there is no way to change the colors of the candlesticks and the border from there. Is there another way to do that?

format google sheets charts formatting to filter out certain ranges, emphasize others

i wanted to ask how do i get google sheets charts to start at a certain value.
I have a chart that i only want to focus on the area between 150 and 160.
unfortunately the chart starts at 0 and takes up too much space of the chart
any advice would be appreciated
If you want format chart axis, you can do it in chart editor:
Select chart.
Click the three-dot button
Click Edit chart command.
Then go to Customize tab -> Vertical axis -> and enter min and max values
That's all.

Google Sheets Treemap Chart Tool-tip Showing Twice

Looking for assistance with a Google Sheets treemap chart. When I turn tool-tips on I get the value showing up twice. Tool-tips work fine with other chart types. How can I get the value to show only once as a tool-tip in a treemap?.
Here's an example:
https://docs.google.com/spreadsheets/d/e/2PACX-1vSag7IGwwqmgsVqpi9PMKPVMMidEU59GY6RvEWovXv1NrEsTXKjm4n7LS1HJasKjpBYeNUbX29645N5/pubhtml?gid=0&single=true

Is highcharts sparkline with multiple series possible?

Is it possible to have multiple series/datapoints per sparkline chart in a sparkline set? The demo page for the sparkline page doesnt show any form of customization other than physical appearance like color.
Just copy/pasting morganfree's answer so I can mark this question as answered already. cheers~
Sparkline is a just a set of charts inside a table - you can customise
it as you customise a regular chart. If you want multiple series
inside the chart, set it in series prop - jsfiddle.net/6pvzb2zc –
morganfree

Resources