Setting mouse pointer style

Type tutorial

This tutorial will show how we can change cursor style when hovering over some chart element. Setting cursor style We can use any element’s cursorOverStyle setting to specify which cursor to show when it is hovered by a mouse cursor. Available styles The following table lists a few of the most common cursor styles. For […]

Adding watermarks to charts

Type tutorial

This short tutorial will explain how we can add various types of information as a watermark on charts. In plot area of an XY chart An XY chart has a special container called a plot area, accessible via chart.plotContainer. We can create any type of element, as well as push it into plot container’s children. […]

Creating custom indicators for a Stock Chart

Type tutorial

This tutorial will show how we can create custom indicators for a stock chart. Indicator class To begin creating a custom indicator, we need to define a new class that extends a built-in Indicator class. Our class definition at the very least should contain three things: To test our new indicator, we will invoke it […]