Pre loader

Custom Rollover modifier

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

Hi,

I would like to display the rollovermodifier line that must be parallel to the X axis and the Rollovermodifier line must be a dashed line. In the y axis I need to add a label annotation with svg .How can I fix the problem. Kindly provide me the solution.

This is the code I have given,

const horizontalline = new RolloverModifier({
IsEnabled: true,
DrawVerticalLine: true,
showTooltip: false,
rolloverLineStroke: “white”,
rolloverLineStrokeThickness : 1
})
sciChartSurface.chartModifiers.add(horizontalline);

Version
2.2.2393
Images
  • Andrew Burnett-Thompson
    Hi there, there’s no out of the box way to do this yet in SciChart.js but we are discussing as a team how to do it. Best regards, Andrew
  • Ayana VS
    Hi, I need the horizontal rollover modifier line. But without rotate the chart. like this XAxis.Alignment = Left and YAxis.Alignment = Top. I need the X axis must to be bottom and Y axis must to be left. How to display the horizontal line without rotate the chart?
  • You must to post comments
0
0

Ayana

Your vertical axis is Depth, am I right? Perhaps the vertical chart feature in SciChart.js will solve your problems?

Take a look at the Vertical Chart documentation.

const { wasmContext, sciChartSurface } = await SciChartSurface.create(divElementId);
const xAxis = new NumericAxis(wasmContext);
xAxis.axisAlignment = EAxisAlignment.Left; // Set XAxis alignment to the left or right
sciChartSurface.xAxes.add(xAxis);
const yAxis = new NumericAxis(wasmContext); // Set YAxis alignment to top or bottom
yAxis.axisAlignment = EAxisAlignment.Top;
sciChartSurface.yAxes.add(yAxis);

By setting XAxis.Alignment = Left and YAxis.Alignment = Top you rotate the chart. This also rotates modifiers like a RolloverModifier.

enter image description here

Also see our Vertical Chart demo which combines both.

Try it out!

Best regards
Andrew

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies