Alexander Chandra
Alexander Chandra

Reputation: 659

Highchart change series value

How to change series on highchart properties series? this is jsfiddle

its similiar like this but different structure

i want to change many type of series like this

series: [{
            name: 'Nominal',
            data: [
                { name: 'Remunerasi', y: 200000, color: 'red'},
                { name: 'Penyesuaian Gaji', y: 1200000, color: 'yellow' }
            ]
        }]


//or this
series: [{
    name: 'Brands',
    data: [
        { name: 'Promosi', y: 33.38 },
        { name: 'Upgrading', y: 14.77 }, 
        { name: 'GP Dibawah Min', y: 22.91 },
        { name: 'Kontrak Kedua', y: 20}
    ]
}]


//or this

series: [{
        name: 'Sebelum',
        data: [200000, 300000, 400000, 400000],
        color : 'red'
    },{
        name: 'Setelah',
        data: [400000,600000,800000,800000],
        color : 'yellow'
    },{
        name: 'Kenaikan',
        data: [200000, 300000, 400000, 400000],
        color : 'blue'
    }]

Im trying to change the value inside those series using a button

Upvotes: 0

Views: 119

Answers (1)

Mira
Mira

Reputation: 1

i hope this tuto help you setdata:Apply a new set of data to the series and optionally redraw it. The new data array is passed by reference (except in case of updatePoints), and may later be mutated when updating the chart data.

Upvotes: -1

Related Questions