## Hello polaris-chart!

规定了一些默认的配置，以下图表例外：

1. `bar`

```
// 规定图表的一些配置
export default {
  height: 400,
  // 统一轴的格式
  yAxis: {
    label: { formatter: (v: number | string) => Number(v)._toFormatWithUnit() },
    min: 0
  },
  xAxis: {
    type: 'timeCat',
    nice: true
  },
  // 统一图例的显示位置
  legend: { position: 'bottom' } as any,
  autoFit: true,
}

```
