Código en JS
Highcharts.chart('id_plot', {
//chart: { type: 'column' },
title: { text: 'Producción promedio diaria' },
subtitle: { text: 'Año 2025' },
yAxis:{ title: { text: 'Millones de barriles'}},
xAxis: {
categories: ['ene-25', 'feb-25', 'mar-25', 'abr-25', 'may-25','jun-25','jul-25','ago-25','sep-25']
},
series: [{
name: 'Petroecuador',
data: [378, 374, 362, 374, 369,371,110,369,373],
type:'column',
color:'#1E4976'
}, {
name: 'Privadas',
data: [96, 95, 88,97, 96, 96,37,98,96],
type:'column',
color:'#BBBE64'
}]
});