documentationfor yFiles for HTML 2.6

Known Issues and Workarounds

This document lists known issues of yFiles for HTML 2.6+local. Most of these issues are caused by errors in browsers or third-party toolkits. yFiles for HTML comes with a workaround for such issues, if possible. If a workaround exists but must be enabled explicitly, it is mentioned in the description of the known issues.

Enabling a Workaround

The yFiles for HTML demos enable some workarounds by default. If you use yFiles for HTML in production without the demo classes, you should enable these workarounds in your own code if your application is affected by the corresponding issues.

For example, to enable the workaround with id cr320635 on the Workarounds class, you must set the corresponding workaround variable before initializing and using the GraphComponent. When you are using the ES module variant of the library, you can do so like this:

import { Workarounds } from 'yfiles';

Workarounds.cr320635 = true;

In a UMD environment, workarounds can alternatively be activated like this:

yfiles.workaroundCR320635 = true;
// or
yfiles.lang.Workarounds.cr320635 = true;

See the properties of the Workarounds class for an overview of the available workarounds.

Contents of this Section