OpenFin Workspace Platform API
    Preparing search index...

    Interface AnalyticsConfig

    Configuration object of the Workspace Platform's Analytics Config.

    interface AnalyticsConfig {
        sendToOpenFin: boolean;
    }
    Index
    sendToOpenFin: boolean

    Enable sending of Analytics data to OpenFin

    false
    

    OpenFin workspace utilizes a HTML iframe in order to send analytics data to OpenFin. In order to facilitate this, and allow for the use of fin APIs within the iframe, you must enable injection of the OpenFin API into cross-origin iframes. This can be configured within the manifest like so:

    {
    "platform": {
    "api": {
    "iframe": {
    "crossOriginInjection": true
    }
    },
    // The rest of the manifest configuration is omitted for brevity
    }
    }