Interface for customizing cursor behavior of RectangleSeries specifically.
RectangleSeries
Override location of cursor (default is center of rectangle)
// Example, position cursor at y2 rather than vertical center rectSeries.setCursorBehavior({ location: (info) => ({ x: (info.x1 + info.x2) / 2, y: info.y2 }), })
Interface for customizing cursor behavior of
RectangleSeriesspecifically.