Highcharts white space between grouped bars - highcharts

I'd like to know if this is possible?
I want to group certain bars by adding white spacers. In my Google Spreadsheet I add an empty row, but then Highcharts renders a row number as category. The image explains my issue.
![screenshot]http://www.exelmans.be/forums/screenshot-highcharts.png

You can set for empty categories an empty string: categories: ['a','b','c','', 'e','f','g', '','i','j','k']
Demo: http://jsfiddle.net/3bQne/97/

Related

Hide some Legend Items in Line Chart

I have my line chart showing all the data properly, including some annotated values which are meant to act as the label in the last data point for the lines. I wanted to do it this way so that I don't have to show literally every data label for every data point.
I have everything working correctly, but I noticed I am unable to remove the annotated legend item without removing the series. By removing the series, I lose the label. Below is my chart.
As you can see, the last data points are working as labels (1092 for example). The problem is you can also see each annotated item in the legend (the colored dashes with no text next to them). How can I only show the legend items for Gained (green), Lost (red), Net (gained - lost) (yellow), and Total (blue), without the other dashes? Is this doable?
I am also open to seeing if there is another way to have only the last data point have a data label in Google Sheets. I was just working off of this tutorial.
Below is a screenshot of some of my data rows in an accompanying sheet.
as long as the annotation column is specified as 'Label' for the primary column you shouldn't be seeing the former in legend

How to get bar chart data label to display both value and percent (of total) in google sheets?

In a 100% stacked bar chart, how can I get the data label to display BOTH the value AND the percent of total? Example: 129 (60.3%)
This is displayed in the tooltip when you hover over the bar, but not visible on the bar itself.
Example here: https://docs.google.com/spreadsheets/d/1qpro5WMBxOljwshoDFXsqC5_XFz-aF8dlfgMxdCINp4/edit#gid=796957633
Workaround
Unfortunately, at the moment of this answer it is not possible to add multiple data labels. However, you can create you own label by inserting an annotations column next to each data point. The content of these annotation columns would be your desired label. Then you would just need to add these labels as described in the reference I just shared.
In your case it would look like 129 (60.3%) which you could obtain from the following Google Sheets formula : = C4&" ("&ROUND(C4*100/($C4+$C5+$C6),1)&"%)").

To hide the 2nd level of categories in high chart from xAxis?

I made a column chart with 2 level (categories) but now i want to hide the second category from showing on xAxis. Is it possible to do that...this is highcart in jasperstudio. See the picture below highlighted in brown thats the one i want to hide
Have you tried labels: {enabled:false} on the x-axis?

Show empty series in highcharts

I can't seem to show the series with empty data into my highcharts. I have some check-ins in a graph for each of the 7 weekdays. But when a day doesn't have data, it's hidden. What I would like to do is show the label of the empty serie on the x-axis (print the weekday name). I tried to populate my data with null values, using different options for highcharts, ...
I also can't set the color for the columns, I tried setting it to gray but that doesn't work.
Here's a demo in JSFiddle
You can set min and max for yAxis, instead of minPadding and maxPadding, take a look: http://jsfiddle.net/tgZcc/21/

Display of stacked column chart

I'm rendering a stacked column chart. My "problem" is that the columns appear to be located one behind the other, instead of one on top of the other, add a "depth" to the column so to speak.
Is there a setting to get the column to appear in a "flat" manner, one on top of the other?
Thx..
You should set stacking parameter refer this link

Resources