Type tutorial
This demo shows how we can add plus/minus buttons to a bubble chart that zoom in and out the chart. Code The code relies on adding custom buttons to chart plot container, as well as attaching click events to them, that in turn zoom the chart using axis’ API. Demo
Type tutorial
This demo creates a custom ForceDirected tree chart with a few advanced features, e.g.:
Type tutorial
This demo shows how we can use events and axis ranges to add a dynamic last grid/label on a DateAxis.
Type tutorial
This demo shows how we can fix toggling of nodes in a multi-level Sunburst chart via legend using events. Code Example
Type tutorial
This demo shows how we can trigger a replay of series’ animations when previously invisible chart scrolls into view.
Type tutorial
This demo shows how we can apply “active” state to all of the columns in a stack when one of them is clicked.
Type tutorial
This demo shows how we can sync zoom of an X-axes across multiple charts. Code The function that performs syncing: Using events to monitor changes to start and end settings on each axis: Demo
Type tutorial
This demo shows how we can create bullets out of several elements, as well as attach hover effects that trigger with both direct hovering by a pointer and with an XYCursor.
Type tutorial
Normally, the X-axis will be shown at the bottom of the plot container, regardless of the Y-axis scale. This tutorial shows how we can make the X-axis dynamically position itself so that it sticks to the position of the zero value. Code The idea is to watch for various events that could affect position of […]
Type tutorial
This demo uses pointerover and pointerout events on force-directed series’ nodes, to automatically highlight all links going out of it. It makes use of an array of links contained in node’s data item’s links setting to automatically apply or remove “active” state. Code Demo