any idea how to change X Axis lables in the drill down chart? now I get king , queen , 2 AND I want it to show me : 8,9,10
I tried to add categories: ['9', '8','1'],
but it's not working :\
http://jsfiddle.net/mnXy3/6/
any idea?
Thanks,
Mor
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- jQuery add and remove delay
- Include empty value fields in jQuery .serialize()
- Disable Browser onUnload on certain links?
- how to get selected text from iframe with javascri
You need to specify your drilldown data differently
Demo: http://jsfiddle.net/robschmuecker/mnXy3/10/
Second solution is using a pair
{name,y}
where x is category, then on xAxis set type as category. Example:http://jsfiddle.net/mnXy3/11/