Pre loader

How can I create point markers only for specific points

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

0
0

Hi,

I would like to create some markers for a “FastLineRenderableSeries” only for specific points and add a label to them.

Is there a way to this with the latest version?

Thanks,
Alex.

Version
4
  • You must to post comments
0
0

Hi.

You can define your point marker in this way, and style it how you want. An example for definition:

private readonly IPointMarker normalPointMarker;
normalPointMarker = (IPointMarker)Application.Current.FindResource(“NormalMarker”);

Now you should create a style for it in resources, example:

xmlns:s=”http://schemas.abtsoftware.co.uk/scichart”

< s:CrossPointMarker x:Key=”ResultNormalMarker” StrokeThickness=”3″ Stroke=”{DynamicResource WhiteColor}”/>

After that you can define the FastLineRenderableSeries and add these point marker.

FastLineRenderableSeriesfastLineRenderableSeries = new FastLineRenderableSeries
{
PointMarker = normalPointMarker
};

  • 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