Answer the question
In order to leave comments, you need to log in
How to transfer data from json to highcharts?
Hello. I receive data in json format, then I need to substitute them in data and categories.
{
1: {0: "9,00", mouth: "Ноябрь", sum: 38}
2: {0: "-1,00", mouth: "Декабрь", sum: 37}
3: {0: "96,00", mouth: "Январь", sum: 133}
4: {0: "-101,80", mouth: "Февраль", sum: 31.2}
5: {0: "-21,20", mouth: "Март", sum: 10}
6: {0: "10,00", mouth: "Апрель", sum: 20}
}
Answer the question
In order to leave comments, you need to log in
// let data = {!! json_encode($arrRois) !!};
let month = data.map(e=>e.mouth);
let values = data.map(e=>e.sum);
xAxis: {
tickPixelInterval: 50,
categories: month, // сюда месяца
tickmarkPlacement: 'on',
labels: {
useHTML: true,
},
},
series: [{
name: '',
data: values, //как сюда засунуть sum
marker: {
enabled: false
}
}]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question