I want to bring Checkbox before item name which are normally after the item name. Refer below image for more description.
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- How to fix IE ClearType + jQuery opacity problem i
- void before promise syntax
- jQuery add and remove delay
It's hard to tell without seing your chart code, but you may have some joy with the rtl legend option.
legend: { rtl: true },
or
legend: { rtl: false },
http://api.highcharts.com/highcharts#legend.rtl
By default it's not supported, but you can use simple workaround for this, see: http://jsfiddle.net/Le4Vc/4/
Edit: Another solution, more universal is to wrap
positionCheckboxes
function. For example:And demo: http://jsfiddle.net/Le4Vc/85/