score:7
spacingBottom is what you need to add, and also you need to take care of the offset:
chart: {
events: {
load: function () {
var label = this.renderer.label("How do I move this center and under the legend.")
.css({
width: '450px',
color: '#222',
fontSize: '16px'
})
.attr({
'stroke': 'silver',
'stroke-width': 2,
'r': 5,
'padding': 10
})
.add();
label.align(Highcharts.extend(label.getBBox(), {
align: 'center',
x: 0, // offset
verticalAlign: 'bottom',
y: 50 // set the right offset
}), null, 'spacingBox');
}
},
renderTo: 'container_chartFreqAtaTailNum',
type: 'bar',
height: 895,
spacingBottom: 100 // The space between the bottom edge of the chart and the content (plot area, axis title and labels, title, subtitle or legend in top position).
}
Here is the fiddle: http://jsfiddle.net/uMBHf/1/
Source: stackoverflow.com
Related Query
- How do you add text to the bottom center of legend and bottom center of chart under legend?
- How do you increase the performance of highcharts chart creation and rendering
- How to add text to the bottom of a Highchart, but above the legend?
- How to use add series and update methods in the high chart wrapper for angular?
- put the highchart legend to the bottom of the chart and horizontally centered
- How to center highcharts pie chart and legend on a page?
- How can you have more than 10 colors represented in the graph and legend in highcharts?
- how to add text in top,left and bottom in funnel highcharts
- How can I add a text link just below the legend box in highcharts
- How could you supply multiple series to a line chart in R shiny using highcharter package and without hardcoding the series?
- Highcharts: How to add a text panel on the side of the chart area
- canvg and highcharts how to include chart legend and keep the chart size?
- How to remove default Hover text and display the custom text title on hover Donut chart Highcharts
- How do I enlarge the pie chart and shift to the center
- How do you reduce the space between pie chart and legend? (highcharts.js)
- How to make legend labels to bring out the series of a pie chart and not make them disappear when label is clicked in HighCharts?
- How to center the title text in pie chart highchart?
- How to add a line at the bottom of a column chart in highcharts
- How to add the text boxes at bottom of the Highchart?
- How to display legend in Highcharts Waterfall Chart and make the sum column of waterfall appear in multiple colors?
- How to use the tooltip formatter and still display chart color (like it does by default)?
- Highstock: When legend under the chart has many items, the chart height is small. How can I fix the height?
- How to add space between chart and axis in highcharts
- How to Check and Uncheck all the Legend elements in HighCharts Linechart?
- how to center text inside donut chart embedded in combination chart
- How do I reduce the space between title and chart of a High Chart?
- How to dynamically add point placement and point padding in fixed column chart (highcharts)
- How to set series-label to false by default and change the color of series label text in highchart
- How to add Legend in highchart compare stock chart
- How center the value 0[threshold], the line which separates positive and negative value?
More Query from same tag
- The graph is not equal on the basis of the addition code in Highcharts
- Drill down solidgauge chart to 2 series bar chart
- Highcharts percentage variability position
- Boxplot and columns combined in a single chart with Highcharts.js
- How to enable dates that match with the data in rangeselector?
- Highchart X-axis truncate shows weird characters
- jsonp callback data in highcharts not working
- Create Highcharts bubble chart dynamically
- Full width arearange
- Export multiple charts with one request
- Type Labels on Stacked and grouped column - Highcharts
- Highcharts selection event not passing xAxis
- Column chart overlaps to one line when there's just a group of data
- Highcharts selection, yaxis is undefined
- How to place a chart not from the beginning of the X axis
- Highcharts click event should apply only on marker point
- how to custom heatmap cell with padding?
- get values of date-input-boxes from rangeSelector
- Highcharts - Stockchart Zoom position without Navigator
- How can I extend the x-axis on a Highcharts graph?
- Highcharts Legend item text alignment
- Is highcharts-more still needed (as of highcharts version 4.0.4)?
- TypeError: undefined is not a function when using highchart
- pass global variable into jquery function
- Different HighCharts Version on One Page
- highcharts not showing the `column` bar
- How can we customise the series data object property names "name" & "y" as part of highcharts-angular?
- Highchart shiny R scatter plot - how to define individual point colors
- Set the with of xAxis label to 50% on a Highcharts BarChart
- How to extract Min and Max date from Highcharter stock graph?