C/C++教程

highCharts 常见用法整理

本文主要是介绍highCharts 常见用法整理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

highCharts用法

tooltip

tooltip: {
  valueDecimals: 0,  // 保留几位小数
  shared: true,  // 提示框被共享,有序数据的系列类型将被显示在同一个提示框中
  crosshairs: true,
  // 时间格式化字符
  // 默认会根据当前的数据点间隔取对应的值
  // 图表中数据点间隔为 1天,配置 day 值即可
  dateTimeLabelFormats: {
    millisecond: '%H:%M:%S.%L',
    second: '%H:%M:%S',
    minute: '%Y-%m-%d %H:%M',
    hour: '%Y-%m-%d %H:%M',
    day: '%Y-%m-%d',
    week: '%m-%d',
    month: '%Y-%m',
    year: '%Y'
  }
},

xAxis

xAxis: {
  type: 'datetime',
  tickInterval: 1000 * 60 * 60 * 24 * 365,
  // milliseconds * seconds * minutes * hours * days = 1 year
  crosshair: true,  //十字准星线
  dateTimeLabelFormats: {
    day: '%m-%d',
    hour: '%H:%M',
    minute: '%H:%M',
    month: '%Y-%m',
  },
  // labels: {
  //   formatter: (x)=>{
  //     return x.value
  //   }
  // }
},

yAxis

yAxis: {
  title: {
    text: '数量',
  },
  crosshair: true,  //十字准星线
},
这篇关于highCharts 常见用法整理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!