score:1
Accepted answer
That problem is more related with internal spacing calculations, to prevent taking into account stock tools add this small plugin:
(function(H) {
H.wrap(H.Chart.prototype, 'getMargins', function(proceed) {
var storedStockTools = this.stockTools;
// don't consider stock tools in get margins
this.stockTools = null;
proceed.apply(this, Array.prototype.slice.call(arguments, 1));
// restore stock tools
this.stockTools = storedStockTools;
});
}(Highcharts));
Live demo: https://jsfiddle.net/BlackLabel/aer80c1b/
Docs: https://www.highcharts.com/docs/extending-highcharts/extending-highcharts
Source: stackoverflow.com
Related Query
- Need to remove the empty space to the left of the graph, after I moved the stocktools to the top of the graph in highstocks
- How to remove Empty space above the chart
- How do I remove the empty space beneath a solid gauge?
- High charts remove dots from the line graph
- In highcharts's stacked bar chart, how can I remove the white space between different
- Highcharts Remove Space across the x-Axis
- How to remove empty space between bars in Highcharts polar chart?
- Highcharts graph should start entirely to the left and end entirely to the right
- Strange character in the Highstock source code
- Start graph rendering after left sided labels in Highstock
- The graph disappear after change marker style and then change the line color
- highcharts mapchart: no color shown after reload the graph
- Need help in simplifying the code to synchronise tooltips and crosshairs for Highcharts,
- The continuous update highcharts with more data plotting the continuity is not visible so we need that continuity in the centre of the graph
- Highcharts.js question: is it possible to add blank space from the left and right side of chart that will be visible only during panning?
- The graph of hichart would miss column at left or right when hichart zoomed
- Highcharts remove space before first bar and after last
- How to modify the code so that Highcharts graph does not cover fixed navigation bar at the top of the page?
- Highcharts height issue - remove white space at the top. See JSFiddle :)
- How to remove space below the semi-circle in highcharts?
- How to remove space between highChart bar graph between two different category
- highcharts column graph tooltip need to close when mouseout the cursor from the graph
- I need to remove Y-axis labels on highcharts while keeping the data intact
- How could I change the x,y label and remove empty x bar
- The graph is not equal on the basis of the addition code in Highcharts
- Remove line in the graph - highcharts
- The empty space on the chart xaxis
- How to get Highcharts X-Axis Categories starting at the left most point
- Highcharts: Remove space between plot border and actual chart
- How can I remove the white border from HighCharts pie chart?
More Query from same tag
- How to add Modal pop up on nodes of org chart Highcharts
- Series as columns in highcharts
- Get a reference to a Highcharts chart
- how to aggregate data from mongodb collection to highstock series data format
- Stacked grouped histogram HighCharts graphs with dynamic data using ASP.NET MVC3?
- How to convert to jpg and download div containing highchart and dynamically generated html table?
- How to set multiple xAxis.labels.align in HighCharts?
- HighCharts - Set default Axis options for my extension
- how to load JSON for this highchart - django app
- Highcharts X-Axis value on top of stacked column
- How to change gauge meter color based on value in highcharts
- MonthPicker in Highcharts Stockchart not changing month
- Highcharts negative logarithmic scale solution stopped working
- Line graph is not showing data from database
- Color grouped bars slightly different in HighCharts
- highcharts, Set minimum height for stacked column chart?
- Creating graph on webpage using Highcharts
- Cannot find name 'require'
- How can I reveal my chart tooltip programatically when the tooltip combines data from multiple series? (sync charts)
- Blank boxes in high chart when data is null
- How to display highchart y axis with constistant data
- How to show first and last label of x axis Highcharts
- How to retrieve/display title, units, copyright along with JSON data in Highcharts
- Trying to load flags with my temperature data from json files
- show value if multiple y values on xAxis are used
- How to tell if series is in upper chart or lower chart in tooltip (using highstock)?
- HighChart Skipping the first point : Highcharts, Javascript
- Set minPointLength for one of two series in highchart
- How to update highcharts.js chart on select change using data from csv file(s)?
- Why Markers points are not aligned with yAxis in Highcharts?