score:1
Found the reason: the values are just too small to be displayed. Unfortunately, a mouse over won't show at least those values.
Setting the clip
option to false solve partially the problem.
this.columnChartOptions.plotOptions = {
column: {
stacking: 'normal',
clip: false
}
};
score:0
As you rightly noticed - the values are just too small to be displayed. A good solution can be to set minPointLength
and use null
data vales insted of 0. For example:
series: [{
type: 'column',
minPointLength: 5,
stacking: 'normal',
data: [...]
}]
Live demo: http://jsfiddle.net/BlackLabel/Ly1fkzdh/
API Reference: https://api.highcharts.com/highcharts/series.column.minPointLength
Source: stackoverflow.com
Related Articles
- Highcharts stacked column ommit smaller values
- Hide 0 values in Stacked Column Chart in Highcharts
- Highcharts Stacked Column chart from JSON not charting correct values
- Highcharts - Stacked Bar Column - Total Value of Stacked Bar not Correct with Negative and Positive Values
- negative values in highcharts stacked column chart
- set color of grouped stacked column in highcharts
- Highcharts Plot Reciprocal Values For Column Height
- Highcharts - Column With Negative Values - Column Color
- Change Datalabel Color, Rotation and Align values based on Column value in highcharts
- Highcharts stacked column highlight
- Highcharts stacked column bar with line
- HighCharts stacked column range
- highcharts - precision for stacked column chart data labels
- Overlapping and rounded stack in stacked column graph in Highcharts
- Make stack label disabled for a column in stacked column graph in Highcharts
- Highcharts - null values are plotted on stacked area chart, in latest version
- Highcharts stacked column how to use different label on each category
- Highcharts stacked column stackLabels do not show when axis is reversed
- HighCharts Data Structure - Multiple Independent Series, Stacked Column Chart
- Highcharts Stacked Percentage Column Hyperlink
- Highcharts overlapping and stacked column
- Convert Highcharts stacked daily column from "day" to "month" view
- highcharts stacked column overlaps when toggling the legends visibility
- Highcharts stacked column chart is missing some values?
- pushing dynamic data to stacked percentage column in highcharts
- passing json values to highcharts from .net code behind
- Highcharts values in one column
- Stacked column inside drilldown - HighCharts
- Highcharts - Cannot set x-axes categories in column charts with negative values
- Column Chart Show datalabel for null values - Highcharts
- How to drilldown to third level when its data is determined by second's click event?
- Why can't I change the cursor to "progress" before performing some script in jQuery?
- How to dynamically add grouped _categories in Highcharts in MVC
- same js highcharts display not the same
- Is there a way to get superscripts to show up in highchart exports
- Set axis extremes dynamically on drilldown
- Plotting data using highcharts piechart in flask web application
- Second time ajax call not working
- Highcharts Bar Chart Zoom not working
- HighCharts Drill down not working
- Highcharts redraw series in chart
- Highstocks line chart issue after HS upgrade
- using gauges in ionic 3
- Highcharts Unable to set value of the property 'point': object is null or undefined
- How to dynamically set title in Pie Chart of Highcharts
- R-highcharter combine tooltips
- How to set R Highcharter stock x-axis dates
- Motion in drilldown bubble chart Highcharts
- How to add current price line on hover?
- Highcharts, Yii and body content reloading