Skip to content

Is it possible to add "divCursor" to the charts' parent container? #526

@srinivas-86

Description

@srinivas-86

I am dynamically(from js code) creating the chart and adding it to DIV container.
I am facing an issue when I make the parent div container to fullscreen mode.

The annotation labels are not visible in the fullscreen mode since it is added to the document body as below

function createCursorDiv() { if (cursorDivCreated == false) { var div = document.createElement('divCursor'); div.id = 'divCursor'; div.style.position = 'absolute'; **document.body.appendChild(div);** cursorDivCreated = true; } };

I want to know is there any option available which allows me to add the "divCursor" to the parent of the chart container?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions