Is it possible?
Or make box annotations fit screen height?
(even when zooming)
- Vadim Kirey asked 6 years ago
- last edited 6 years ago
- You must login to post comments
Hi Vadim,
There is no build-in functionality for first case.
Regarding your second question. Have you tried to use setCoordinateMode? In your case you need to use RelativeY mode and then specify Y1 = 0 and Y2 = 1 to fill entire chart:
final BoxAnnotation boxAnnotation = sciChartBuilder.newBoxAnnotation().withY1(0d).withY2(1d).withCoordinateMode(AnnotationCoordinateMode.RelativeY).build();
Best regards,
Yura
- Yura Khariton answered 6 years ago
-
Thanks, its perfect solution
- You must login to post comments
Please login first to submit.