Can you please provide an example or documentation on how to change the tooltip style? Is any method to turn off the cursor pointer for a particular data series?
- Jerin Mathew asked 4 years ago
- You must login to post comments
const cursorModifier = new CursorModifier({
crosshairStrokeThickness: 1,
showTooltip: true,
showAxisLabels: false
});
cursorModifier.tooltipSvgTemplate = (
seriesInfo: SeriesInfo[],
svgAnnotation: CursorTooltipSvgAnnotation
) => {
return <svg></svg>
;
};
sciChartSurface.chartModifiers.add(cursorModifier);
- Jerin Mathew answered 4 years ago
- You must login to post comments