Page MenuHomePhabricator

[MitkChart] optimize zooming option
Closed, ResolvedPublic

Description

We have the option to alter the zooming by using

void QmitkChartWidget::UpdateMinMaxValueXView(double minValueX, double maxValueX)
void QmitkChartWidget::UpdateMinMaxValueYView(double minValueY, double maxValueY)

However, it only calls the js function UpdateMinMaxValueXView(" + minValueX,maxValueX+ ")"

It would be more useful to save this as a variable in QmitkChartData. Then, we could later reuse it.