2

折线图

如果你看一下那些红色圆圈区域,你可以看到左下角的轴溢出,并且在 Y 轴的顶部和 X 轴的末端都有轴刻度。

我为轴和 c3 图表配置提供的唯一自定义 CSS:

.tick line {
  display: none;
}

var rateConfig = {
  bindto: '#line-chart',
  data: {
    x: 'date',
    xFormat: '%m%d',
    columns: [],
  },
  legend: {
    show: false,
  },
  point: {
    r: 4,
  },
  axis: {
    y: {
      tick: {
        format: function (d) { return d + '%'; },
        count: 5,
      },
      max: 100,
      padding: {
        top: 0,
        bottom: 0,
      },
    },
    x: {
      type: 'timeseries',
      tick: {
        culling: false,
      },
    },
  },
  color: {
    pattern: [colors['Rate1'], colors['Rate2'], colors['Rate3']],
  },
  grid: {
    y: {
      lines: [
        {value: 25},
        {value: 50},
        {value: 75},
        {value: 100},
      ],
    },
  },
4

1 回答 1

5

看看这个:

http://c3js.org/reference.html#axis-x-tick-outer

您只需要像这样更改对 rateConfig 的调用:

....
axis: {
    y: {
        tick: {
            format: function (d) { return d + '%'; },
            count: 5,
            outer: false
        },
        max: 100,
        padding: {
            top: 0,
            bottom: 0
        }
    },
    x: {
        type: 'timeseries',
        tick: {
            culling: false,
            outer: false
        }
    }
},
....

注意outer: falsex 和 y 刻度的添加。

于 2015-05-19T22:21:12.800 回答