Chartbreaker
    Preparing search index...

    Creating a Controller is straightforward.

    Either by id:

    import { Controller } from '@stock3/charting-bundle-chartbreaker';
    const controller = new Controller({
    'id': 'charting' // assuming there is a div in the DOM with id 'charting'
    /* additional properties can be specified here */
    });

    or by reference:

    import { Controller } from '@stock3/charting-bundle-chartbreaker';
    const controller = new Controller({
    'element': div // div is an HTMLElement object
    /* additional properties can be specified here */
    });