-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: Add drilldown #29
Comments
Interesting, I wasn't even aware this feature existed! I'll look in to it! |
Thanks! |
As a workaround it is possible to add the drilldown data to the For example: <HighchartsChart
drilldown={{
series: [
{
name: 'Value name',
id: 'value-name',
data: [['Sub Value 1', 10], ['Sub Value 2', 40]],
},
],
}}
>
[...]
<ColumnSeries
id="col-serie"
name="Col Serie"
data={[{ name: 'Value name', y: 50, drilldown: 'value-name' }]}
/>
</HighchartsChart>; And you also have to import and apply the highcharts drilldown package before using Highcharts: import Highcharts from 'highcharts';
import applyDrilldown from 'highcharts/modules/drilldown';
applyDrilldown(Highcharts); It would be great to have a special integration in the library but for now this works fine! Thanks for the nice library btw! |
@adriantoine can you please, please, please provide a complete working example? I'm stuck trying to do this. |
Hmm, I seem to have figured it out, thanks though. @whawker brilliant library BTW. |
the drill down not works for me when the data comes from a Ajax call... only the "sumary" data is rendered. The drill down data seems to be cached with the initial data and not update when the data changes |
can any one give a codepen working example of react-jsx-highcharts with drilldown feature |
Would be great to see drilldown as part of this library:
https://www.highcharts.com/docs/chart-concepts/drilldown
The text was updated successfully, but these errors were encountered: