“`
var categories= [
‘00:00-09:00’,
‘09:00-11:00’,
‘11:30-14:30’,
‘14:30-16:30’,
];
var data=[49.9, 71.5, 106.4, 129];
(function () {(‘#container’).highcharts({
chart: {
type: ‘line’
},
credits:{
enabled:false // 禁用版权信息
},
title: {
text: ‘各个时间段实际产量’
},
xAxis: {
categories: categories,
crosshair: true
},
yAxis: {
min: 0,
title: {
text: ‘产量 (个)’
}
},
tooltip: {
headerFormat: ‘{point.key}

’,
pointFormat: ‘’ +
‘’,
footerFormat: ‘
{series.name}: {point.y:.1f} mm
’,
shared: true,
useHTML: true
},
plotOptions: {
column: {
borderWidth: 0
},
series: {
dataLabels: {
enabled: true
}
}
},
exporting: {
enabled: false,
fallbackToExportServer: false
},
series: [{
name: ‘实际产量’,
data: data
}]
});
});

“`hichart柱状图

相关文章:

  • 2021-12-25
  • 2022-12-23
  • 2021-08-10
  • 2021-05-10
  • 2021-10-01
  • 2021-12-30
  • 2021-11-22
  • 2021-06-15
猜你喜欢
  • 2022-02-27
  • 2021-07-15
  • 2021-04-21
  • 2022-12-23
相关资源
相似解决方案