Skip to content

Commit

Permalink
feat(D3 plugin): disable inactive styles by default (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
korvin89 authored Dec 20, 2023
1 parent 75186b5 commit ee0ada1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/plugins/d3/renderer/constants/defaults/series-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const seriesOptionsDefaults: SeriesOptionsDefaults = {
brightness: 0.3,
},
inactive: {
enabled: true,
enabled: false,
opacity: 0.5,
},
},
Expand All @@ -38,7 +38,7 @@ export const seriesOptionsDefaults: SeriesOptionsDefaults = {
brightness: 0.3,
},
inactive: {
enabled: true,
enabled: false,
opacity: 0.5,
},
},
Expand All @@ -50,7 +50,7 @@ export const seriesOptionsDefaults: SeriesOptionsDefaults = {
brightness: 0.3,
},
inactive: {
enabled: true,
enabled: false,
opacity: 0.5,
},
},
Expand All @@ -62,7 +62,7 @@ export const seriesOptionsDefaults: SeriesOptionsDefaults = {
brightness: 0.3,
},
inactive: {
enabled: true,
enabled: false,
opacity: 0.5,
},
},
Expand All @@ -74,7 +74,7 @@ export const seriesOptionsDefaults: SeriesOptionsDefaults = {
brightness: 0.3,
},
inactive: {
enabled: true,
enabled: false,
opacity: 0.5,
},
},
Expand All @@ -86,7 +86,7 @@ export const seriesOptionsDefaults: SeriesOptionsDefaults = {
brightness: 0.3,
},
inactive: {
enabled: true,
enabled: false,
opacity: 0.5,
},
},
Expand Down

0 comments on commit ee0ada1

Please sign in to comment.