Pre loader

Line Graph Names

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 have added 24 Line graphs for EEG. Now I want to display the name of each channels against each graph. I am using Y steeped graph which you are using for Vital signs display in example code. Can you please let me know how to t to display the name of each channels against each graph

Best Regards,
Aditya

Version
V4
  • You must to post comments
0
0

Hi Aditya,

Well there are several possible ways to do this:
– You can set AxisTitle for YAxis in each EEG channel
– You can use Annotation API and place TextAnnotation with channel name inside each EEG chart

Is this suitable for your needs?

Best regards,
Yura

  • You must to post comments
0
0

Hi Yura,

I tried both the options. But both did not work for me:

  1. With the setAxis tile:

    FontStyle titleStyle = new FontStyle(14, ColorUtil.Blue);
    yAxisFp1Ref.setTitleStyle(titleStyle);
    yAxisFp1Ref.setAxisTitle(“Fp1RefId”);
    yAxisFp2Ref.setAxisTitle(“Fp2RefId”);
    yAxisF3Ref.setAxisTitle(“F3RefId”);

  2. With annotation, I used the below code:

    TextAnnotation textAnnotation = sciChartBuilder.newTextAnnotation()
    .withText(“Fp1Ref”)
    .withPosition(7.5d, 5d)
    .withFontStyle(12, ColorUtil.Cyan)
    .withVerticalAnchorPoint(VerticalAnchorPoint.Bottom)
    .withXAxisId(“Top_X_Axis”)
    .withYAxisId(“Left_Y_Axis”)
    .withIsEditable(true)
    .build();

Please help to add the channel names on the left y axis. Let me know the sample code available

Best regards,
Aditya

  • Yura Khariton
    Can you provide screenshot with desired output for chart, so I can use it as reference?
  • You must to post comments
0
0

Left Side Y axis we need to have channel numbers.

Please see the attached image of the graph. I just marked it with a red arrow

Images
  • You must to post comments
0
0

Hi there,

Well to achieve desired output setting AxisTitle should be enough. We have a hidden example in demo application that provides similar output, but from your screenshot it looks like more like you need something like this example ( based on screenshot where vertical lines on chart cross multiple Y axes, it looks like everything is rendered within single chart ), but with axis title for each Y axis.

Is this suitable for your needs?

Best regards,
Yura

Images
  • You must to post comments
Showing 4 results
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