Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
prat1507
Specialist
Specialist

Add Script.Js in qlikview extension

Hello all

Well I've started today learning about qlikview extensions and I'm still very much confused. I hope people out there can help me out.

My .JS code which i've copied from Highcharts is as below:

<script src="https://code.highcharts.com/highcharts.js"></script>

<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto"></div>

<body>

<script>

Highcharts.chart('container', {

    chart: {

        type: 'bar'

    },

    title: {

        text: 'Stacked bar chart'

    },

    xAxis: {

        categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']

    },

    yAxis: {

        min: 0,

        title: {

            text: 'Total fruit consumption'

        }

    },

    legend: {

        reversed: true

    },

    plotOptions: {

        series: {

            stacking: 'normal'

        }

    },

    series: [{

        name: 'John',

        data: [5, 3, 4, 7, 2]

    }, {

        name: 'Jane',

        data: [2, 2, 3, 2, 1]

    }, {

        name: 'Joe',

        data: [3, 4, 4, 2, 5]

    }]

});

</script>

</body>

I want to display this chart in an extension in Qlikview.Please help.

Thanks in advance.


Regards
Pratyush

0 Replies