Oracle Apex 21.1 unable to create charts

Viewed 16

`New to oracle apex application. I've confirmed region is successfully saved in database as chart type. 7468263514430213

I am using very basic sql query to return result which I can see returing results in classic report.

Seems like some kind of configuration error to me in apex settings.

region.js?v=21.1.3:359 Uncaught Error: Region element not found R7468263514430213
at **apex.region.create** (region.js?v=21.1.3:359:19)
at widget.jetChart.js?v=21.1.3:71:24
at Object.execCb (require.js?v=21.1.3:5:16727)
at e.check (require.js?v=21.1.3:5:10499)
at e.\<anonymous\> (require.js?v=21.1.3:5:12915)
at require.js?v=21.1.3:5:1542
at require.js?v=21.1.3:5:13376
at each (require.js?v=21.1.3:5:1020)
at e.emit (require.js?v=21.1.3:5:13344)
at e.check (require.js?v=21.1.3:5:11058)

 **apex.region.create** = function ( pRegionId, pRegionImpl ) {
        var region,
            element$ = getElement( pRegionId );

        if ( element$.length ) {
            region = $.extend( {}, regionPrototype, pRegionImpl );
            region.element = element$;
            element$.addClass( C_REGION );
            element$.data( REGION_KEY, region );
        } else {
            throw new Error( "Region element not found " + pRegionId );
        }
    };

Many Thanks in advance.

I've also created a new page with chart type and still getting same error where it's unable to find region with static id.`

0 Answers
Related