自学内容网 自学内容网

Echats 实现CPK (过程能力)研究报告

背景:

实现:

Echarts Option 代码示例

 option = {
  title: {
    text: '折线图示例 - X轴为数值'
  },
  xAxis: {
    type: 'value',  // X 轴改为数值型
    min: 0,         // 最小值
    max: 10,        // 最大值
  },
  yAxis: {
    type: 'value'
  },
  series: [
    {
      type: 'line',
      data: [
        [0, 150], [2, 230], [4, 224], [6, 218], [8, 135], [10, 260]  // 数值型数据
      ],
      markLine: {
        silent: true,  // 不触发鼠标事件
        data: [
          {
            yAxis: 200, // 水平辅助线位于 Y 轴的 200
            label: {
              show: false  // 隐藏默认的标记文字
            }
          }
        ],
        lineStyle: {
          type: 'solid',
          color: '#FF0000'  // 辅助线颜色
        }
      },
      markPoint: {
        data: [
          { coord: [0, 200], label: { formatter: '0' } },   // 在 X=0 的位置
          { coord: [2, 200], label: { formatter: '2' } },   // 在 X=2 的位置
          { coord: [4, 200], label: { formatter: '4' } },   // 在 X=4 的位置
          { coord: [6, 200], label: { formatter: '6' } },   // 在 X=6 的位置
          { coord: [8, 200], label: { formatter: '8' } },   // 在 X=8 的位置
          { coord: [10, 200], label: { formatter: '10' } }  // 在 X=10 的位置
        ],
        symbol: 'circle',  // 使用圆形标记
        symbolSize: 10
      }
    }
  ]
};

效果:


原文地址:https://blog.csdn.net/byc233518/article/details/142353558

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!