Estoy usando Highcharts en una aplicación Vue usando highcharts-vue
Estoy configurando mi plantilla así
<highcharts class="vessChart" ref="chart" style="width:100%" :callback="chartcallback" :options="options" ></highcharts>
y luego configuro las opciones del gráfico en el Vue
yAxis:[],
series:[],
background:[],
options: {
chart: {
borderWidth: 1,
marginLeft: 40,
marginRight: 2,
type:'line',
zoomType: 'x',
title: {
text: ''
},
panning:true
/*backgroundColor:'lightgrey'*/
},
title: {
text: ''
},
pane:{
background:[]
},
time:{
useUTC:true
},
credits:{
enabled:false
},
tooltip: {
shared: true
},
title:{
text:null
},
rangeSelector: {
inputEnabled: false
},
xAxis:{
type:'datetime',
title:
{
align:'high'
},
labels: {
padding: 50,
format: '{value:%e %b %Y}',
style: {
fontSize: '10px'
}
},
crosshair: {
enabled: true,
width: 2,
color: '#000'
},
},
yAxis: [],
plotOptions: {
series: {
animation: false
}
},
,series: []
}
y luego, cuando tengo datos para agregar, inserto datos en yAxis, series y matrices de fondo en consecuencia
this.data.titles.forEach(title => {
this.yAxis.push(
{
title: {
text: title.title,
margin:20,
fontSize:"15px"
},
labels: {
enabled:true,
align: 'left',
padding:15
},
alignTicks:'left',
textAlign:'left',
align:'middle',
height: chartHeight+'%',
top:topStep+'%',
opposite:false,
offset:0
}
);
this.background.push({backgroundColor: "red"});
topStep = topStep + chartHeight + 5;
this.series.push({
yAxis:counter,
name:title.title,
data:[]
});
counter++;
});//foreach
this.options.yAxis = this.yAxis;
this.options.series = this.series;
this.options.pane = this.background;
Traté de importar highcharts-more haciendo
import highchartsmore from './highcharts-more.js'
pero no funciona, la página se vuelve blanca. También intenté importarlo yendo a index.html de Vue y agregando<script src="https://code.highcharts.com/highcharts-more.js"></script>
No hay error en la página, pero los paneles aún no tienen color.
* Si esto no es posible, ¿puedo al menos agregar una línea entre los paneles de alguna manera?
Gracias
EDITAR