Pre loader

How to add Point marker from Code Behind C#

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

I am dynamically creating renderable series. How can I add the point marker also with it

_renderableSeries1 = new FastLineRenderableSeries();
using (SciRealTimeChart.SuspendUpdates())
{
    _dataManager.LoadBuffers(_plDVM, _ioVariables[0], count);
    _renderableSeries1.SeriesColor = (Color)ColorConverter.ConvertFromString(Constants.Constants.HEX_CODE_RED);
    _renderableSeries1.StrokeThickness = 1;
    _renderableSeries1.XAxisId = "DateTimeAxisID";
    _renderableSeries1.YAxisId = Constants.Constants.YAXIS + count;
    _renderableSeries1.DataSeries = _plDVM.DataSeries._DataSeries1;

}
  • You must to post comments
0
0

Hi Harishtei,

It’s really simple, just this:

_renderableSeries1.PointMarker = new EllipsePointMarker() { Width =5, Height = 5, Stroke = ... } 

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