Custom period selector on XYChart
demo This demo shows how we can add external buttons to create a custom pre-defined period selector on a regular XYChart.
demo This demo shows how we can add external buttons to create a custom pre-defined period selector on a regular XYChart.
demo This demo shows how we can catch X-axis over-zoom events and dynamically load missing data on a Stock Chart.
demo This demo shows how we can add an additional date axis to show axis tooltip on top of the chart instead of axis itself.
demo This demo shows how we can use events to affix a clicked node of a Force-Directed Tree to the middle of the chart.
demo This demo shows how we can show aggregated daily data as a column series, then drill-down into hourly data for the day on a click. Example
demo This demo shows how we can use events on legend items to toggle slices of multiple nested Series on a Pie Chart. Code The code below catches click events on legend’s containers, extracts category of a licked slice, iterates through data items of a different series, to toggle on or off a data item with […]
demo This demo shows how we can rotate the MapChart with an Orthographic projection (globe) so that it is centered on a clicked country, then zoom in to it. Code Example
demo This demo shows how we can define custom states on legend markers to override default hover and active colors. Code Example
demo This demo shows how we can use a custom theme to override the look of icons used in a StockChart. Code Comment By default, Stock chart uses a custom draw function for its icons. In the above code, in a theme, we override draw with an empty function, so that default behavior is disabled. Then […]
demo This demo shows how we can use events on a Legend to “inverse” toggle behavior of Pie chart’s legend by showing only clicked sliced, while hiding the rest of the slices. Code Example