Questions tagged [column-chart]
145 questions
2
votes
1 answer
How can I add stroke around columns of google column chart?
I have used ajax to fetch the data. My code is below:
let jsonData = $.ajax({
url: url,
dataType:"json",
async: false,
success: function(jsonData){
let data = new google.visualization.arrayToDataTable(jsonData);
…

NILANJAN ADAK
- 31
- 3
2
votes
1 answer
High charts: Can we reduce the distance between two bars in grouped column chart
Using this example from Highcharts for displaying grouped column chart with negative values
https://www.highcharts.com/demo/column-negative
When we have less attributes in x-axis, the distance between both bars of the same value becomes wider. Can…

user10404931
- 23
- 2
2
votes
1 answer
How to filter the data and plot a column chart using the facet wrap in r?
https://www.kaggle.com/shivamb/netflix-shows-and-movies-exploratory-analysis/notebook contains the data set. (File size is 2.1 MB)
I am looking the achieve the following things the data set -
Identify the top 25 leading actors from the countries…

Sri Sreshtan
- 535
- 3
- 12
2
votes
1 answer
Google Visualization API - JQuery - increase spacing every two bars in a ColumnChart
I want to add a larger space between every two columns in a Google Visualization ColumnChart and have been using the bar groupWidth property to implement this the code below shows this: