score:4
You should use the Renderer which allows to add custom paths in chart. Knowing that, catch the load event and iterate on each series point, adding line in right side.
chart: {
type: 'column',
events: {
load: function() {
var chart = this,
series = chart.series,
each = Highcharts.each,
r = chart.renderer,
borderWidth = 2,
x,y;
each(series, function(s, i) {
each(s.data, function(p, j) {
x = p.plotX + chart.plotLeft + (p.pointWidth / 2);
y = p.plotY + chart.plotTop + borderWidth;
r.path(['M', x, y, 'L', x, y + p.shapeArgs.height])
.attr({
zIndex: 10,
'stroke-width': borderWidth,
'stroke': 'gray'
})
.add()
});
});
}
}
},
Example: - http://jsfiddle.net/2reombm7/
Source: stackoverflow.com
Related Query
- Shadow in Highcharts bar chart
- How do I rotate my HighCharts bar chart so its vertical, not horizontal?
- dealing with highcharts bar chart with really long category names
- Highcharts percentage of total for simple bar chart
- HighCharts - Y-Axis padding in a bar chart
- highcharts jquery dynamic change chart type column to bar
- Highcharts stacked bar chart hide data labels not to overlap
- Highcharts Bar Chart - How to set the minimum bar width/length
- Grouping a stacked bar chart in Highcharts
- Highcharts stacking bar chart border not displaying on right side
- Highcharts - Bar - Setting the X axis width and the chart area width to be constant
- Simple bar chart in jQuery HighCharts and MVC 2 application?
- creating a bar chart using Highcharts with React - getting an error that rendering div isn't found
- Importing JSON file into Highcharts for Bar Chart Visualization
- Highcharts Progress Bar Chart
- Highcharts 3d bar chart data labels position is wrong
- R highcharts multiple stacked bar chart
- Highcharts Bar Chart Zoom not working
- Centering a data label in Highcharts Bar Chart
- Adding round corners to Highcharts Bar Chart with stacked bars when value is 0
- HighCharts Stock Chart error code 18
- How to add a horizontal line in Column bar chart in Highcharts plugin?
- Negative bar chart of highcharts in chartjs
- Passing in Id for each data item in bar chart using highcharts
- Highcharts bar chart with fixed bar widths and gaps
- Why is the first label on highcharts bar chart missing?
- Splitted bar chart for paired data with highcharts
- Highcharts 4.0.3 stacked bar chart bug adds รข-
- Ordering the stacking in a highcharts bar chart in R
- highcharts minPointLength do not work for unstacked bar chart
More Query from same tag
- bullet chart configuration in highcharts
- How to Cache DOM Variable in jQuery
- Highcharts minPointLength on columnrange not working
- Issue in semi circular donut chart
- Highchart Annotation Connector
- highchart json data points
- highcharts heatmap Uncaught TypeError: Cannot read property 'prototype' of undefined
- Highcharts's x - axis (datetime) format
- Is there a Line of Bar Charting Javascript Library which is free/ Which contains the ability to add a report filter
- Easier way to draw a bar chart using highcharts?
- Highstock: set xAxis as not "datetime"
- yAxis resizer to change svgrenderer position also highcharts
- Create nested array of objects from array of objects Javascript
- Combined two types highchart with one legend?
- How to use Vue bound data in Highcharts?
- Draw plot bands between 2 points in x axis - Highcharts
- Highcharts Semi Donut Pie with Negative Percentage
- Drilldown in highmaps - how to remove a series
- Highcharts drill down to detailed graph
- How to connect/sync xAxis crosshairs between multiple HighStocks charts
- highchart column chart color for same month
- How to set Precision-ToolTip in Highchart
- Get javascript highcharts to render inside a Bootstrap Popover
- Highcharts tooltip format different with series
- How can I remove the legend symbol for a SINGLE legend in Highcharts?
- Angular : Filter object data to build a Highchart Widget with distinct elements attributes
- Splitted bar chart for paired data with highcharts
- How to get only whole numbers on the y-axis?
- Turning off point markers does not appear to work for Highcharts-ng
- How to make dynamic chart with the next view? What libraries allows to customise exactly this like in my design?