# 时间序列轴

¥Time Series Axis

时间序列刻度从时间刻度扩展并支持所有相同的选项。然而,对于时间序列尺度,每个数据点都是等距分布的。

¥The time series scale extends from the time scale and supports all the same options. However, for the time series scale, each data point is spread equidistant.

# 示例

¥Example

const chart = new Chart(ctx, {
    type: 'line',
    data: data,
    options: {
        scales: {
            x: {
                type: 'timeseries',
            }
        }
    }
});

# 更多细节

¥More details

有关所有其他详细信息,请参阅 时间尺度文档

¥Please see the time scale documentation for all other details.