Skip to content

Commit

Permalink
Merge pull request #1123 from merico-dev/1121-set-yaxismininterval-to…
Browse files Browse the repository at this point in the history
…-1-for-cartesian-scatter-boxplot-pareto

1121 set yaxismininterval to 1 for cartesian scatter boxplot pareto
  • Loading branch information
GerilLeto authored Aug 14, 2023
2 parents 71e51f0 + 3e30a70 commit 0dfd99d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/api",
"version": "10.16.0",
"version": "10.17.0",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/dashboard",
"version": "10.16.0",
"version": "10.17.0",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export function getOption({ config, data, variables }: IGetOption) {
yAxis: [
{
name: y_axis.name,
minInterval: 1,
nameTextStyle: {
fontWeight: 'bold',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export function getYAxes(conf: ICartesianChartConf, labelFormatters: Record<stri
}
return {
...rest,
minInterval: 1,
show,
min: min ? min : undefined,
max: max ? max : undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export function getYAxes(conf: IParetoChartConf, formatters: TParetoFormatters)
{
name: conf.bar.name,
nameGap: 20,
minInterval: 1,
nameTextStyle: {
fontWeight: 'bold',
align: conf.bar.nameAlignment,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export function getYAxes(conf: IScatterChartConf, labelFormatters: Record<string
}
return {
...rest,
minInterval: 1,
min: min ? min : undefined,
max: max ? max : undefined,
position,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/root",
"version": "10.16.0",
"version": "10.17.0",
"private": true,
"workspaces": [
"api",
Expand Down
2 changes: 1 addition & 1 deletion settings-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/settings-form",
"version": "10.16.0",
"version": "10.17.0",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@devtable/website",
"private": true,
"license": "Apache-2.0",
"version": "10.16.0",
"version": "10.17.0",
"scripts": {
"dev": "vite",
"preview": "vite preview"
Expand Down

0 comments on commit 0dfd99d

Please sign in to comment.