Search code examples
oracle-databaseoracle-apexoracle-apex-5anychart

APEX 'waiting for data' chart label not visible


while loading data for a chart in APEX 5 (default html5) the user is presented with a 'Waiting for data...' label at the chart position. Unfortunately this label is only visible when the chart has a fixed 'width'.

Is there a workaround so that the label is always visible? Working with a fixed width is no option due to window resizing and different screen resolutions.

Thanks in advance, Peter


Solution

  • The only workaround I came up with is calling

    $(window).trigger("apexwindowresized");

    after the page load.

    This is not pretty but it works.