Pre loader

How to set StrokeEndLineCap for a FastLineRenderableSeries?

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,
How can i StrokeEndLineCap = Flat for a FastLineRenderableSeries without using CustomRenderableSeries?
please help.

thanks.

  • You must to post comments
0
0

Hi there,

Pen Line End Cap is only supported in the HighQualityRenderSurface plugin in SciChart. The only way to create a pen with this line cap is as follows:

// Given IRenderContext2D from a HighQualityRenderSurface
using (var pen = renderContext.CreatePen(Colors.Red, true, 1.0f, 1.0, null, PenLineCap.Flat);
{
    renderContext.DrawLine(pen, ...);
}

As a result, the only way to call this code is to create a CustomRenderableSeries and call this overload at the moment.

Maybe we can improve this in future builds. I’ll log a task for the backlog.

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