Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@visactor/vchart",
"comment": "docs: supply interface of docs. fix#3877",
"type": "none"
}
],
"packageName": "@visactor/vchart"
}
4 changes: 2 additions & 2 deletions docs/assets/option/en/chart/sequence.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Sequence Chart
chartType = 'sequence'
) }}

## appendPadding(number)
## appendPadding(number|Object)

This property is used to configure the chart's inner padding. It is recommended to configure this, otherwise the event link series' title will overlap with the gridline.

Expand Down Expand Up @@ -38,4 +38,4 @@ In the sequence chart, it is recommended to configure at least one pair of event
{{ use: chart-component(
axisType = 'cartesian',
noBandAxis = true
) }}
) }}
4 changes: 2 additions & 2 deletions docs/assets/option/zh/chart/sequence.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
chartType = 'sequence'
) }}

## appendPadding(number)
## appendPadding(number|Object)

属性用于配置图表的内边距, 建议配置, 否则事件link 系列的 title 将会与 gridline 重叠。

Expand Down Expand Up @@ -38,4 +38,4 @@
{{ use: chart-component(
axisType = 'cartesian',
noBandAxis = true
) }}
) }}
2 changes: 1 addition & 1 deletion packages/vchart/src/typings/visual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export interface ICommonSpec {
* @todo 隔离主题和 spec 配置
* IColorKey 类型只适用于主题
*/
stroke?: string | IGradient | false | (number | boolean)[] | IColorKey;
stroke?: string | IGradient | false | (number | boolean)[] | IColorKey | null;
/**
* 描边透明度
*/
Expand Down
Loading