highcharts / highcharts-ios

iOS wrapper for Highcharts.
Other
124 stars 39 forks source link

BUG (?): Blue box around Pie / Donut chart segment #443

Closed skuske closed 2 days ago

skuske commented 1 week ago

Sometimes a blue selection box appears around a pie/donut diagram when you select it with your finger. I can't say exactly how to reproduce this 100%, but some touches with the finger provoke the appearance of this blue box. This is extremely annoying as users do not understand the purpose of this box. How can I prevent this box from appearing? The problem exists with every Pie / Donut Chart, including the iOS demos.

I am not using the accessibility module / plugin.

I urgently ask for help!

IMG_3508

skuske commented 1 week ago

The following seems to fix the problem. However, strange that 'accessibility' has to be explicitly deactivated, especially since the 'Accessibility' module / plugin is not loaded or used in the chart. Could be a bug within the wrapper.

    HIAccessibility *accessibility = [HIAccessibility new];
    accessibility.enabled=@0;
MikolajMichalczak commented 1 week ago

Hi @skuske!

Thank you for bringing this issue to our attention. We understand your concerns regarding this behavior. However, accessibility is considered a desirable feature, which is why it is enabled by default. Changing this default behavior would be a breaking change for users who currently rely on it. Therefore, we have decided not to alter this setting.

If you do not need the accessibility module, you can disable it using the code snippet you provided earlier. We appreciate your understanding and feedback.