SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
I am trying to integrate custom symbols from AnnotationsAreEasyFragment to MultiPaneStockChartsFragment but the symbols are not visible on price chart of MultiPane… can anyone please help me out with how to give X and Y axis in multipane price chart
Hi Ghousia,
You just need to ensure that you provide correct XAxisId and YAxisId for your annotations because in Multi-Pane Stock Charts example we use custom axis id in price whart. It is set in this line:
this.yAxis = builder.newNumericAxis()
.withAxisId(title)
....
.build();
and title value is passed through constructor of BasePaneModel class. For price chart it has next value:
private static final String PRICES = "Prices";
So to add custom annotation from Annotation are Easy example you just need to provide same YAxisId for this annotation and add it into AnnotationCollection of the chart:
Collections.addAll(annotations, builder.newCustomAnnotation().withPosition(xPosition, yPosition).withContent(R.layout.example_custom_annotation_view).withYAxisId(PRICES).build());
Hope this will help you!
Best regards,
Yura
Please login first to submit.