score:0
I fixed it, see this fiddle.
$(function () {
$('#container').highcharts({
chart: {
type: 'column',
marginBottom: 72
},
credits: {
enabled: false
},
title: null,
legend: {
enabled: false
},
exporting: {
enabled: false
},
yAxis: {
min: 0,
max: 100,
title: null,
align: 'right'
},
xAxis: {
labels: false
},
series: [{
data: [54],
color: '#c00'
}]
}, function(chart) { // on complete
chart.renderer.image('http://www.clker.com/cliparts/p/W/e/k/U/d/blank-fundraising-thermometer.svg',24, 0, 110, 510).add();
});
});
score:7
But it does rather sound like I'm going to be out of luck with Highcharts on this one, a shame for such a simple modification to an exisitng shape.
Don't give up so easy. Highcharts is a tool; if it doesn't do exactly what you want out of the box, then do it yourself. This is what being a good software developer is all about.
For instance, this fiddle combines an SVG image of a thermometer with a column chart in 36 lines of code. It will need some polish but hopefully it can get you going.
$(function () {
$('#container').highcharts({
chart: {
type: 'column',
marginBottom: 53
},
credits: {
enabled: false
},
title: null,
legend: {
enabled: false
},
exporting: {
enabled: false
},
yAxis: {
min: 0,
max: 100,
title: null,
align: 'right'
},
xAxis: {
labels: false
},
series: [{
data: [60],
color: 'red'
}]
}, function(chart) { // on complete
chart.renderer.image('http://www.clker.com/cliparts/p/W/e/k/U/d/blank-fundraising-thermometer.svg', 0, 0, 256, 400)
.add();
});
});
Source: stackoverflow.com
Related Query
- Highcharts - temperature gauge
- Implementing Custom Temperature Gauge with Angular 4 and HighCharts
- Highcharts Solid Gauge Width
- getting error#17 from highcharts while using solid gauge from backbone rails
- HIghcharts 4 solid gauge max value
- Highcharts Gauge
- Dynamically update gauge on highcharts
- Not rendering VU-meter Gauge chart using HighCharts in Durandal
- Highcharts - Color coded legend for solid gauge
- Highcharts Gauge misplaced labels
- Highcharts gauge not rendering text
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Highcharts Gauge Spacing
- How do I use an Highcharts Solid Gauge in angular 6 with typescript?
- Highcharts - Global configuration with common code and unique data & Headings
- Show more data on Gauge chart with Highcharts
- Show some specefic number on gauge highcharts axis labels
- Highcharts Solid Gauge with min number NOT zero
- Gauge Series of Highcharts with React not the Solid Gauge but Gauge Series
- Highcharts - Gauge chart data label not positioning correctly
- Highcharts Gauge chart is rounding down max number
- Highcharts gauge fill to 100% of container
- Highcharts activity gauge in Shiny
- How to remove the value and number labels from Highcharts angular gauge
- HighCharts Stock Chart error code 18
- Highcharts Solid Gauge only want to show 1 data label
- Highcharts Gauge Chart with text labels
- highcharts change rendered image source on click
- Gauge highcharts is not resize with ionic 2
- Highcharts Gauge styling and adding CSS elements
More Query from same tag
- R Highchart // grouped categories in x axis
- Fixed padding between the bars in Highcharts
- Using columnrange chart type in Highcharts with custom output?
- Highcharts: Attach a click event to dataLabel when useHTML set to true
- Highchart Drilldown Multiple Layers
- how to create proper json data format from mysql for highcharts
- Dynamic updates on a pair of charts when zoomed
- Highcharts display series.name on X Axis
- Highmap R (or) javascript - adding custom legend
- Two data points on same day
- How do you convert time series data with pandas and show graph via highstock
- Highcharts: How to add a text panel on the side of the chart area
- Highcharts Gauge chart is rounding down max number
- data not getting displayed/plotted in highchart
- How to make the react-highchart line type stay fixed?
- Highcharts reset zoom doesn't center data points
- highmaps stopped updating after move to .NET Core
- AJAX displaying values from two different functions in a single Highcharts chart instead of two different ones
- Overlapping columns in highchart
- Show specific data in the highchart's title
- In Highchart legend, Want to bring checkbox at start
- How to select a region of a Highcharts by a Javascript
- How to align the xaxis tick mark center
- Highcharts: set only last chunk of line as a dotted zone
- Highcharts grouping column, hide in tooltip
- how to set the interval of points if I have 2 Y axes
- Highstock charts with Google Spreadsheet JSON
- How to add html content above series(Chart type - line)
- Highcharts Legend Selection double fires in Android WebView
- Calling chart.update() with navigator options let the diagram shrink