zoukankan      html  css  js  c++  java
  • Echaer图表——P100080项目

    {
    color: ['#73a195', '#006e5d','#4B8BF4', '#05B7F7'],
    tooltip: {
    trigger: 'axis',
    axisPointer: { // 坐标轴指示器,坐标轴触发有效
    type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
    }
    },
    title: {
    text: '部门平均天数汇总',
    left: 'center',
    top:'5%'
    },
    legend: {
    data: ['在库平均天数', '生产加工平均总天数','在库标准天数','生产标准天数'],
    bottom: '1',
    left: 'center'

    },
    grid: {
    left: '1%',
    right: '4%',
    bottom: '10%',
    containLabel: true
    },
    xAxis: {
    axisLine: {
    length:10,
    symbol: ['none', 'arrow'],//箭头一端没效果,一端箭头
    symbolOffset:[0, 12]//箭头段移动8个像素

    },
    splitLine: { show: false },
    type: 'value'
    },
    yAxis: {
    axisLine: {
    symbol: ['none', 'arrow'], // 分别表示起始位置和终止位置是否使用箭头,默认不使用
    symbolOffset:[0,11]//箭头段移动8个像素
    },
    type: 'category',data:['100000'] }, series: [
    {
    name: '在库平均天数',
    type: 'bar',
    stack: '实际',
    label: {
    normal: {
    show: true,
    position: 'insideLeft',
    }
    },data:[1.2]},{
    name: '生产加工平均总天数',
    type: 'bar',
    stack: '实际',
    label: {
    normal: {
    show: true,
    position: 'insideLeft',
    },
    },data:[4.1] },
    {
    name: '在库标准天数',
    type: 'bar',
    stack: '标准',
    label: {
    normal: {
    show: true,
    position: 'insideLeft',
    }
    },data:[2.0]},{
    name: '生产标准天数',
    type: 'bar',
    stack: '标准',
    label: {
    normal: {
    show: true,
    position: 'insideLeft',
    },
    },data:[2.9] }
    ]}

  • 相关阅读:
    P1522 牛的旅行
    P1908 逆序对
    P1107 雷涛的小猫
    欧拉函数
    P2679 子串
    P1063 能量项链
    P1052 过河
    P1020 导弹拦截
    P1330 阳光封锁大学
    P1198 最大数
  • 原文地址:https://www.cnblogs.com/x666066/p/11407822.html
Copyright © 2011-2022 走看看