Skip to content

Commit

Permalink
fix(plugin-chart-echarts): improve marksize range (apache#1323)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenLYZ authored and zhaoyongjie committed Nov 17, 2021
1 parent 8aff607 commit c6a4844
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const config: ControlPanelConfig = {
label: t('Marker Size'),
renderTrigger: true,
min: 0,
max: 100,
max: 20,
default: markerSize,
description: t('Size of marker. Also applies to forecast observations.'),
visibility: ({ controls }: ControlPanelsContainerProps) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const config: ControlPanelConfig = {
label: t('Marker Size'),
renderTrigger: true,
min: 0,
max: 100,
max: 20,
default: markerSize,
description: t('Size of marker. Also applies to forecast observations.'),
visibility: ({ controls }: ControlPanelsContainerProps) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const config: ControlPanelConfig = {
label: t('Marker Size'),
renderTrigger: true,
min: 0,
max: 100,
max: 20,
default: markerSize,
description: t('Size of marker. Also applies to forecast observations.'),
visibility: ({ controls }: ControlPanelsContainerProps) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const config: ControlPanelConfig = {
label: t('Marker Size'),
renderTrigger: true,
min: 0,
max: 100,
max: 20,
default: markerSize,
description: t('Size of marker. Also applies to forecast observations.'),
visibility: ({ controls }: ControlPanelsContainerProps) =>
Expand Down

0 comments on commit c6a4844

Please sign in to comment.