Hello,
is it possible to add a PinchGestureRecognizer to increase the font of the custom markers?
I have a simple test chart with one columnseries and a ResolveMarkerView delegate. On zooming/pinching the width of the columns are changing but not the labels with the value inside.
Maybe you have a sample how to manage it.
Thanks,
Johann
Hi Johann,
You should be able to adjust the font of the text markers right in ResolveMarkerView delegate method.If you're using the textView to show your labels, for example, you can set textView.Font = UIFont.FromName("Helvetica", 12 * chartView.ZoomScale)Reference to chartView should be available to you as one of the parameters in ResolveMarkerView.This will effectively scale the font size along with the chart view.