score:1
A bar series in Highcharts with a small modification will be a nice solution to create such a chart. The left side images can be added as x-axis categories. Example:
(function(H) {
H.wrap(H.seriesTypes.column.prototype, 'translate', function(proceed) {
proceed.apply(this, Array.prototype.slice.call(arguments, 1));
this.points.forEach(point => {
point.shapeArgs.height = 8;
});
});
})(Highcharts);
Highcharts.chart('container', {
series: [{
pointPadding: 0,
groupPadding: 0,
borderRadius: 6,
type: 'bar',
data: [{
x: 0,
y: 21,
color: 'orange'
},
...
]
}],
xAxis: {
gridLineWidth: 1,
lineWidth: 0,
labels: {
useHTML: true,
x: 15
},
categories: [
'<img src="https://www.highcharts.com/samples/graphics/sun.png">',
...
]
}
});
Live demo: http://jsfiddle.net/BlackLabel/qotzdehL/
API Reference: https://api.highcharts.com/highcharts/xAxis.labels
Source: stackoverflow.com
Related Articles
- Native Android SDK graph
- How can I make React Native in Android aware of a click event in a tooltip in a Highcharts chart?
- Strange character in the Highstock source code
- How to create a drilleable bar graph in jsp page using open source charts API
- Is it possible to create trading graph in react native (like in photo)?
- HighCharts Bubble graph JSON as data source
- How to modify the code so that Highcharts graph does not cover fixed navigation bar at the top of the page?
- how to Extend highchart plot band outside graph using android wrapper
- HighCharts: drawing graph paper for ECG on Android
- HIChart not showing graph when first time loads android
- Highcharts Graph not recreating on same Android activity
- cant work live stock graph in android using json data url
- The graph is not equal on the basis of the addition code in Highcharts
- Highchart specific width stack column bar graph
- Disable-Click on Legend in HighCharts Column Graph
- High charts remove dots from the line graph
- missing value in highcharts line graph results in no line, just points
- Highcharts: Line graph with half solid line and half dotted line?
- Scrolling over highcharts graph
- How to make stacked column graph to show total data value on top
- drawing custom lines on highchart graph
- How to hyperlink bar graph in highcharts
- Highcharts - Dyanmic graph with no initial data
- Highstocks graph width not correctly rendered
- Highcharts graph X-axis label for different date ranges
- How to change graph colour above and below plotline in Highcharts
- Rotated X-Axis labels overlap the graph itself
- Set stacking column graph colors from the bottom up
- Optimize JavaScript DrillDown code
- Click event on clicking on the graph
- Highcharts show two line series with same values
- Tooltip overlap issue in highchart, can not select plotpoint on same datetime?
- Highcharts : How to flag the local maxima on a dynamic graph drawn using HighChart
- Highcharts {Pie} - Remove slice pieces out onclick
- show data of highcharts from database table laravel
- What css styling to achieve to ensure Highchart fits within the outer container and resizes on window resize (i.e. they are responsive)
- Show time in HH:MM on Xaxis Highcharts
- How to make the full million value show up on y-axis and tooltip (Highcharts)
- When changing data, why is the data reduced every time the button is pressed?
- highcharts 3, line on column chart
- Is it possible to get / return Highcharts Axis values?
- Delete button when it's clicked javascript
- highcharts pie drilldown not working in meteorjs
- Highcharts chart axis exceeding set min and max values
- Hide or Disable Legend or Label in the end Highcharts line
- Highcharts and PHP
- Highcharts, have all but first series turned off on chart load
- how to enable only 1 out of 2 column column graph by default when page loads in highcharts and the 2nd one gets visible when toggled in the legend
- highchart customize legend
- Pie chart legend shows empty values