@gravity-ui/chartkit 0.12.0 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.12.1](https://github.com/gravity-ui/chartkit/compare/v0.12.0...v0.12.1) (2022-11-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **Highcharts plugin:** remove style for chart background color ([#73](https://github.com/gravity-ui/chartkit/issues/73)) ([481b2f5](https://github.com/gravity-ui/chartkit/commit/481b2f5fe07d818f37ba220f70fbad14690b39ba))
|
|
9
|
+
|
|
3
10
|
## [0.12.0](https://github.com/gravity-ui/chartkit/compare/v0.11.1...v0.12.0) (2022-11-22)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
--highcarts-navigator-border: var(--yc-color-line-generic);
|
|
12
12
|
--highcarts-navigator-track: var(--yc-color-base-generic);
|
|
13
13
|
--highcarts-navigator-body: var(--yc-color-scroll-handle);
|
|
14
|
-
--highcharts-
|
|
14
|
+
--highcharts-series-border: var(--yc-color-base-background);
|
|
15
15
|
--highcharts-grid-line: var(--yc-color-line-generic);
|
|
16
16
|
--highcharts-axis-line: var(--yc-color-line-generic);
|
|
17
17
|
--highcharts-tick: var(--yc-color-line-generic);
|
|
@@ -94,7 +94,7 @@ const statesForLine = {
|
|
|
94
94
|
const options = {
|
|
95
95
|
chart: {
|
|
96
96
|
zoomType: 'xy',
|
|
97
|
-
backgroundColor: '
|
|
97
|
+
backgroundColor: 'transparent',
|
|
98
98
|
className: 'chartkit-highcharts',
|
|
99
99
|
},
|
|
100
100
|
title: {
|
|
@@ -164,7 +164,7 @@ const options = {
|
|
|
164
164
|
},
|
|
165
165
|
plotOptions: {
|
|
166
166
|
series: {
|
|
167
|
-
borderColor: 'var(--highcharts-
|
|
167
|
+
borderColor: 'var(--highcharts-series-border)',
|
|
168
168
|
label: {
|
|
169
169
|
enabled: false,
|
|
170
170
|
},
|
package/package.json
CHANGED