Я использую Highcharts в приложении Vue, используя highcharts- vue
Я настраиваю свой шаблон так
<highcharts class="vessChart" ref="chart" style="width:100%" :callback="chartcallback" :options="options" ></highcharts>
, а затем Я устанавливаю параметры диаграммы в 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: []
}
, а затем, когда у меня есть данные для добавления, я помещаю данные sh в массивы yAxis, series и background соответственно
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;
Я попытался импортировать highcharts-more, выполнив команду
import highchartsmore from './highcharts-more.js'
, но она не работает, страница возвращается белой. Я также попытался импортировать его, перейдя в index. html из Vue и добавив <script src="https://code.highcharts.com/highcharts-more.js"></script>
На странице нет ошибок, но панели не имеют цвета.
* Если это невозможно, могу я хотя бы как-нибудь добавить линию между панелями?
Спасибо
РЕДАКТИРОВАТЬ
Красные области - это "панели". Спасибо