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
- Ghousia Begum asked 6 years ago
- last edited 6 years ago
- You must login to post comments
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
- Yura Khariton answered 6 years ago
- Hi Yura, Yes it worked for me, Thank you very much!
- You must login to post comments
Please login first to submit.