@hpcc-js/layout 2.51.1 → 2.51.3
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/LICENSE +43 -43
- package/README.md +83 -83
- package/dist/index.es6.js +3 -3
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +6 -6
- package/src/AbsoluteSurface.css +9 -9
- package/src/AbsoluteSurface.ts +84 -84
- package/src/Accordion.css +84 -84
- package/src/Accordion.ts +136 -136
- package/src/Border.css +144 -144
- package/src/Border.ts +617 -617
- package/src/Border2.css +22 -22
- package/src/Border2.ts +391 -391
- package/src/Carousel.css +7 -7
- package/src/Carousel.ts +100 -100
- package/src/Cell.css +11 -11
- package/src/Cell.ts +89 -89
- package/src/ChartPanel.css +8 -8
- package/src/ChartPanel.ts +656 -656
- package/src/FlexGrid.css +7 -7
- package/src/FlexGrid.ts +140 -140
- package/src/Grid.css +90 -90
- package/src/Grid.ts +576 -576
- package/src/HorizontalList.ts +15 -15
- package/src/Layered.css +10 -10
- package/src/Layered.ts +128 -128
- package/src/Legend.ts +516 -516
- package/src/Modal.css +40 -40
- package/src/Modal.ts +289 -289
- package/src/Popup.ts +109 -109
- package/src/Surface.css +89 -89
- package/src/Surface.ts +176 -176
- package/src/Tabbed.css +22 -22
- package/src/Tabbed.ts +158 -158
- package/src/Toolbar.css +32 -32
- package/src/Toolbar.ts +102 -102
- package/src/VerticalList.ts +15 -15
- package/src/__package__.ts +3 -3
- package/src/index.ts +19 -19
- package/types/__package__.d.ts +2 -2
- package/types-3.4/__package__.d.ts +2 -2
package/src/Carousel.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.layout_Carousel > div {
|
|
2
|
-
position: relative;
|
|
3
|
-
overflow: hidden;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.layout_Carousel > div > .carouselItem {
|
|
7
|
-
position: absolute;
|
|
1
|
+
.layout_Carousel > div {
|
|
2
|
+
position: relative;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.layout_Carousel > div > .carouselItem {
|
|
7
|
+
position: absolute;
|
|
8
8
|
}
|
package/src/Carousel.ts
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
import { HTMLWidget, Widget } from "@hpcc-js/common";
|
|
2
|
-
import { select as d3Select } from "d3-selection";
|
|
3
|
-
import "d3-transition";
|
|
4
|
-
|
|
5
|
-
import "../src/Carousel.css";
|
|
6
|
-
|
|
7
|
-
export class Carousel extends HTMLWidget {
|
|
8
|
-
|
|
9
|
-
protected _prevActive: number = 0;
|
|
10
|
-
protected _root;
|
|
11
|
-
|
|
12
|
-
activeWidget(): Widget {
|
|
13
|
-
return this.widgets()[this.active()];
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
enter(domNode, element) {
|
|
17
|
-
super.enter(domNode, element);
|
|
18
|
-
this._root = element.append("div")
|
|
19
|
-
.attr("id", `${this.id()}_root`)
|
|
20
|
-
;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
update(domNode, element) {
|
|
24
|
-
super.update(domNode, element);
|
|
25
|
-
const active = this.active();
|
|
26
|
-
const width = this.width();
|
|
27
|
-
this._root
|
|
28
|
-
.style("width", `${width}px`)
|
|
29
|
-
.style("height", `${this.height()}px`)
|
|
30
|
-
;
|
|
31
|
-
const widgetElements = this._root.selectAll(`#${this.id()}_root > .carouselItem`).data(this.widgets(), d => d.id());
|
|
32
|
-
const update = widgetElements.enter().append("div")
|
|
33
|
-
.attr("class", "carouselItem")
|
|
34
|
-
.each(function (w) {
|
|
35
|
-
w.target(this);
|
|
36
|
-
})
|
|
37
|
-
.merge(widgetElements)
|
|
38
|
-
.style("left", (d, i) => `${(i - this._prevActive) * width}px`)
|
|
39
|
-
.style("width", `${width}px`)
|
|
40
|
-
;
|
|
41
|
-
if (this._prevActive !== active) {
|
|
42
|
-
update
|
|
43
|
-
.style("display", (d, i) => i === this._prevActive || i === active ? null : "none") // Must be called before render callback (not inside transition)
|
|
44
|
-
.transition().duration(this.transitionDuration())
|
|
45
|
-
.style("left", (d, i) => `${(i - active) * width}px`)
|
|
46
|
-
.on("end", function (d, i) {
|
|
47
|
-
d3Select(this).style("display", () => i === active ? null : "none");
|
|
48
|
-
})
|
|
49
|
-
;
|
|
50
|
-
this._prevActive = active;
|
|
51
|
-
}
|
|
52
|
-
widgetElements.exit()
|
|
53
|
-
.each(function (w) {
|
|
54
|
-
w.target(null);
|
|
55
|
-
})
|
|
56
|
-
.remove()
|
|
57
|
-
;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
exit(domNode, element) {
|
|
61
|
-
this.widgets().forEach(w => w.target(null));
|
|
62
|
-
super.exit(domNode, element);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
render(callback): this {
|
|
66
|
-
return super.render(w => {
|
|
67
|
-
if (!this.visible() || this.isDOMHidden()) {
|
|
68
|
-
if (callback) {
|
|
69
|
-
callback(w);
|
|
70
|
-
}
|
|
71
|
-
} else {
|
|
72
|
-
const aw = this.activeWidget();
|
|
73
|
-
if (aw) {
|
|
74
|
-
aw
|
|
75
|
-
.resize(this.size())
|
|
76
|
-
.render(w2 => {
|
|
77
|
-
if (callback) {
|
|
78
|
-
callback(w);
|
|
79
|
-
}
|
|
80
|
-
})
|
|
81
|
-
;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
Carousel.prototype._class += " layout_Carousel";
|
|
88
|
-
|
|
89
|
-
export interface Carousel {
|
|
90
|
-
widgets(): Widget[];
|
|
91
|
-
widgets(_: Widget[]): this;
|
|
92
|
-
active(): number;
|
|
93
|
-
active(_: number): this;
|
|
94
|
-
transitionDuration(): Widget[];
|
|
95
|
-
transitionDuration(_: Widget[]): this;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
Carousel.prototype.publish("widgets", [], "widgetArray", "Widgets", null, { render: false });
|
|
99
|
-
Carousel.prototype.publish("active", 0, "number", "Active widget");
|
|
100
|
-
Carousel.prototype.publish("transitionDuration", 500, "number", "Transition duration");
|
|
1
|
+
import { HTMLWidget, Widget } from "@hpcc-js/common";
|
|
2
|
+
import { select as d3Select } from "d3-selection";
|
|
3
|
+
import "d3-transition";
|
|
4
|
+
|
|
5
|
+
import "../src/Carousel.css";
|
|
6
|
+
|
|
7
|
+
export class Carousel extends HTMLWidget {
|
|
8
|
+
|
|
9
|
+
protected _prevActive: number = 0;
|
|
10
|
+
protected _root;
|
|
11
|
+
|
|
12
|
+
activeWidget(): Widget {
|
|
13
|
+
return this.widgets()[this.active()];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
enter(domNode, element) {
|
|
17
|
+
super.enter(domNode, element);
|
|
18
|
+
this._root = element.append("div")
|
|
19
|
+
.attr("id", `${this.id()}_root`)
|
|
20
|
+
;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
update(domNode, element) {
|
|
24
|
+
super.update(domNode, element);
|
|
25
|
+
const active = this.active();
|
|
26
|
+
const width = this.width();
|
|
27
|
+
this._root
|
|
28
|
+
.style("width", `${width}px`)
|
|
29
|
+
.style("height", `${this.height()}px`)
|
|
30
|
+
;
|
|
31
|
+
const widgetElements = this._root.selectAll(`#${this.id()}_root > .carouselItem`).data(this.widgets(), d => d.id());
|
|
32
|
+
const update = widgetElements.enter().append("div")
|
|
33
|
+
.attr("class", "carouselItem")
|
|
34
|
+
.each(function (w) {
|
|
35
|
+
w.target(this);
|
|
36
|
+
})
|
|
37
|
+
.merge(widgetElements)
|
|
38
|
+
.style("left", (d, i) => `${(i - this._prevActive) * width}px`)
|
|
39
|
+
.style("width", `${width}px`)
|
|
40
|
+
;
|
|
41
|
+
if (this._prevActive !== active) {
|
|
42
|
+
update
|
|
43
|
+
.style("display", (d, i) => i === this._prevActive || i === active ? null : "none") // Must be called before render callback (not inside transition)
|
|
44
|
+
.transition().duration(this.transitionDuration())
|
|
45
|
+
.style("left", (d, i) => `${(i - active) * width}px`)
|
|
46
|
+
.on("end", function (d, i) {
|
|
47
|
+
d3Select(this).style("display", () => i === active ? null : "none");
|
|
48
|
+
})
|
|
49
|
+
;
|
|
50
|
+
this._prevActive = active;
|
|
51
|
+
}
|
|
52
|
+
widgetElements.exit()
|
|
53
|
+
.each(function (w) {
|
|
54
|
+
w.target(null);
|
|
55
|
+
})
|
|
56
|
+
.remove()
|
|
57
|
+
;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
exit(domNode, element) {
|
|
61
|
+
this.widgets().forEach(w => w.target(null));
|
|
62
|
+
super.exit(domNode, element);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
render(callback): this {
|
|
66
|
+
return super.render(w => {
|
|
67
|
+
if (!this.visible() || this.isDOMHidden()) {
|
|
68
|
+
if (callback) {
|
|
69
|
+
callback(w);
|
|
70
|
+
}
|
|
71
|
+
} else {
|
|
72
|
+
const aw = this.activeWidget();
|
|
73
|
+
if (aw) {
|
|
74
|
+
aw
|
|
75
|
+
.resize(this.size())
|
|
76
|
+
.render(w2 => {
|
|
77
|
+
if (callback) {
|
|
78
|
+
callback(w);
|
|
79
|
+
}
|
|
80
|
+
})
|
|
81
|
+
;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
Carousel.prototype._class += " layout_Carousel";
|
|
88
|
+
|
|
89
|
+
export interface Carousel {
|
|
90
|
+
widgets(): Widget[];
|
|
91
|
+
widgets(_: Widget[]): this;
|
|
92
|
+
active(): number;
|
|
93
|
+
active(_: number): this;
|
|
94
|
+
transitionDuration(): Widget[];
|
|
95
|
+
transitionDuration(_: Widget[]): this;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
Carousel.prototype.publish("widgets", [], "widgetArray", "Widgets", null, { render: false });
|
|
99
|
+
Carousel.prototype.publish("active", 0, "number", "Active widget");
|
|
100
|
+
Carousel.prototype.publish("transitionDuration", 500, "number", "Transition duration");
|
package/src/Cell.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
.layout_Cell .update-indicator {
|
|
2
|
-
box-sizing: border-box;
|
|
3
|
-
position: absolute;
|
|
4
|
-
top: 0px;
|
|
5
|
-
left: 0px;
|
|
6
|
-
padding: 0px;
|
|
7
|
-
z-index: 1000;
|
|
8
|
-
border-width: 0px;
|
|
9
|
-
border-style: solid;
|
|
10
|
-
pointer-events: none;
|
|
11
|
-
}
|
|
1
|
+
.layout_Cell .update-indicator {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
position: absolute;
|
|
4
|
+
top: 0px;
|
|
5
|
+
left: 0px;
|
|
6
|
+
padding: 0px;
|
|
7
|
+
z-index: 1000;
|
|
8
|
+
border-width: 0px;
|
|
9
|
+
border-style: solid;
|
|
10
|
+
pointer-events: none;
|
|
11
|
+
}
|
package/src/Cell.ts
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
import { Widget } from "@hpcc-js/common";
|
|
2
|
-
import { select as d3Select, selectAll as d3SelectAll } from "d3-selection";
|
|
3
|
-
import { Surface } from "./Surface";
|
|
4
|
-
|
|
5
|
-
import "../src/Cell.css";
|
|
6
|
-
|
|
7
|
-
export class Cell extends Surface {
|
|
8
|
-
_indicateTheseIds;
|
|
9
|
-
|
|
10
|
-
constructor() {
|
|
11
|
-
super();
|
|
12
|
-
this._indicateTheseIds = [];
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
indicateTheseIds(): any[];
|
|
16
|
-
indicateTheseIds(_: any[]): Cell;
|
|
17
|
-
indicateTheseIds(_?: any[]): any[] | Cell {
|
|
18
|
-
if (!arguments.length) return this._indicateTheseIds;
|
|
19
|
-
this._indicateTheseIds = _;
|
|
20
|
-
return this;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
enter(domNode, element) {
|
|
24
|
-
super.enter(domNode, element);
|
|
25
|
-
const context = this;
|
|
26
|
-
element
|
|
27
|
-
.classed("layout_Surface", true)
|
|
28
|
-
.on("mouseenter", function () { context.onMouseEnter(); })
|
|
29
|
-
.on("mouseleave", function () { context.onMouseLeave(); })
|
|
30
|
-
;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
update(domNode, element) {
|
|
34
|
-
super.update(domNode, element);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
onMouseEnter() {
|
|
38
|
-
const arr = this.indicateTheseIds();
|
|
39
|
-
const opacity = this.indicatorOpacity();
|
|
40
|
-
const indicatorBorderColor = this.indicatorBorderColor();
|
|
41
|
-
const indicatorGlowColor = this.indicatorGlowColor();
|
|
42
|
-
for (let i = 0; i < arr.length; i++) {
|
|
43
|
-
const otherElement = d3Select("#" + arr[i]);
|
|
44
|
-
const otherWidget: Widget = otherElement.datum() as Widget;
|
|
45
|
-
if (otherElement && otherWidget) {
|
|
46
|
-
otherElement.append("div")
|
|
47
|
-
.attr("class", "update-indicator")
|
|
48
|
-
.style("width", otherWidget.width() + "px")
|
|
49
|
-
.style("height", otherWidget.height() + "px")
|
|
50
|
-
.style("opacity", opacity)
|
|
51
|
-
.style("border-color", indicatorBorderColor)
|
|
52
|
-
.style("-webkit-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
53
|
-
.style("-moz-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
54
|
-
.style("box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
55
|
-
;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
onMouseLeave() {
|
|
61
|
-
const arr = this.indicateTheseIds();
|
|
62
|
-
for (let i = 0; i < arr.length; i++) {
|
|
63
|
-
d3SelectAll("#" + arr[i] + " > div.update-indicator").remove();
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
title: { (): string; (_: string): Cell; };
|
|
68
|
-
widget: { (): Widget; (_: Widget): Cell; };
|
|
69
|
-
|
|
70
|
-
gridRow: { (): number; (_: number): Cell; };
|
|
71
|
-
gridCol: { (): number; (_: number): Cell; };
|
|
72
|
-
gridRowSpan: { (): number; (_: number): Cell; };
|
|
73
|
-
gridColSpan: { (): number; (_: number): Cell; };
|
|
74
|
-
|
|
75
|
-
indicatorGlowColor: { (): string; (_: string): Cell; };
|
|
76
|
-
indicatorBorderColor: { (): string; (_: string): Cell; };
|
|
77
|
-
indicatorOpacity: { (): number; (_: number): Cell; };
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
Cell.prototype._class += " layout_Cell";
|
|
81
|
-
|
|
82
|
-
Cell.prototype.publish("gridRow", 0, "number", "Grid Row Position", null, { tags: ["Private"] });
|
|
83
|
-
Cell.prototype.publish("gridCol", 0, "number", "Grid Column Position", null, { tags: ["Private"] });
|
|
84
|
-
Cell.prototype.publish("gridRowSpan", 1, "number", "Grid Row Span", null, { tags: ["Private"] });
|
|
85
|
-
Cell.prototype.publish("gridColSpan", 1, "number", "Grid Column Span", null, { tags: ["Private"] });
|
|
86
|
-
|
|
87
|
-
Cell.prototype.publish("indicatorGlowColor", "#EEEE11", "html-color", "Glow color of update-indicator", null, { tags: ["Basic"] });
|
|
88
|
-
Cell.prototype.publish("indicatorBorderColor", "#F48A00", "html-color", "Border color of update-indicator", null, { tags: ["Basic"] });
|
|
89
|
-
Cell.prototype.publish("indicatorOpacity", 0.8, "number", "Opacity of update-indicator", null, { tags: ["Basic"] });
|
|
1
|
+
import { Widget } from "@hpcc-js/common";
|
|
2
|
+
import { select as d3Select, selectAll as d3SelectAll } from "d3-selection";
|
|
3
|
+
import { Surface } from "./Surface";
|
|
4
|
+
|
|
5
|
+
import "../src/Cell.css";
|
|
6
|
+
|
|
7
|
+
export class Cell extends Surface {
|
|
8
|
+
_indicateTheseIds;
|
|
9
|
+
|
|
10
|
+
constructor() {
|
|
11
|
+
super();
|
|
12
|
+
this._indicateTheseIds = [];
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
indicateTheseIds(): any[];
|
|
16
|
+
indicateTheseIds(_: any[]): Cell;
|
|
17
|
+
indicateTheseIds(_?: any[]): any[] | Cell {
|
|
18
|
+
if (!arguments.length) return this._indicateTheseIds;
|
|
19
|
+
this._indicateTheseIds = _;
|
|
20
|
+
return this;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
enter(domNode, element) {
|
|
24
|
+
super.enter(domNode, element);
|
|
25
|
+
const context = this;
|
|
26
|
+
element
|
|
27
|
+
.classed("layout_Surface", true)
|
|
28
|
+
.on("mouseenter", function () { context.onMouseEnter(); })
|
|
29
|
+
.on("mouseleave", function () { context.onMouseLeave(); })
|
|
30
|
+
;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
update(domNode, element) {
|
|
34
|
+
super.update(domNode, element);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
onMouseEnter() {
|
|
38
|
+
const arr = this.indicateTheseIds();
|
|
39
|
+
const opacity = this.indicatorOpacity();
|
|
40
|
+
const indicatorBorderColor = this.indicatorBorderColor();
|
|
41
|
+
const indicatorGlowColor = this.indicatorGlowColor();
|
|
42
|
+
for (let i = 0; i < arr.length; i++) {
|
|
43
|
+
const otherElement = d3Select("#" + arr[i]);
|
|
44
|
+
const otherWidget: Widget = otherElement.datum() as Widget;
|
|
45
|
+
if (otherElement && otherWidget) {
|
|
46
|
+
otherElement.append("div")
|
|
47
|
+
.attr("class", "update-indicator")
|
|
48
|
+
.style("width", otherWidget.width() + "px")
|
|
49
|
+
.style("height", otherWidget.height() + "px")
|
|
50
|
+
.style("opacity", opacity)
|
|
51
|
+
.style("border-color", indicatorBorderColor)
|
|
52
|
+
.style("-webkit-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
53
|
+
.style("-moz-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
54
|
+
.style("box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
55
|
+
;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
onMouseLeave() {
|
|
61
|
+
const arr = this.indicateTheseIds();
|
|
62
|
+
for (let i = 0; i < arr.length; i++) {
|
|
63
|
+
d3SelectAll("#" + arr[i] + " > div.update-indicator").remove();
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
title: { (): string; (_: string): Cell; };
|
|
68
|
+
widget: { (): Widget; (_: Widget): Cell; };
|
|
69
|
+
|
|
70
|
+
gridRow: { (): number; (_: number): Cell; };
|
|
71
|
+
gridCol: { (): number; (_: number): Cell; };
|
|
72
|
+
gridRowSpan: { (): number; (_: number): Cell; };
|
|
73
|
+
gridColSpan: { (): number; (_: number): Cell; };
|
|
74
|
+
|
|
75
|
+
indicatorGlowColor: { (): string; (_: string): Cell; };
|
|
76
|
+
indicatorBorderColor: { (): string; (_: string): Cell; };
|
|
77
|
+
indicatorOpacity: { (): number; (_: number): Cell; };
|
|
78
|
+
|
|
79
|
+
}
|
|
80
|
+
Cell.prototype._class += " layout_Cell";
|
|
81
|
+
|
|
82
|
+
Cell.prototype.publish("gridRow", 0, "number", "Grid Row Position", null, { tags: ["Private"] });
|
|
83
|
+
Cell.prototype.publish("gridCol", 0, "number", "Grid Column Position", null, { tags: ["Private"] });
|
|
84
|
+
Cell.prototype.publish("gridRowSpan", 1, "number", "Grid Row Span", null, { tags: ["Private"] });
|
|
85
|
+
Cell.prototype.publish("gridColSpan", 1, "number", "Grid Column Span", null, { tags: ["Private"] });
|
|
86
|
+
|
|
87
|
+
Cell.prototype.publish("indicatorGlowColor", "#EEEE11", "html-color", "Glow color of update-indicator", null, { tags: ["Basic"] });
|
|
88
|
+
Cell.prototype.publish("indicatorBorderColor", "#F48A00", "html-color", "Border color of update-indicator", null, { tags: ["Basic"] });
|
|
89
|
+
Cell.prototype.publish("indicatorOpacity", 0.8, "number", "Opacity of update-indicator", null, { tags: ["Basic"] });
|
package/src/ChartPanel.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.layout_ChartPanel .series.highlight {
|
|
2
|
-
stroke-width: 2px;
|
|
3
|
-
opacity: 1;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.layout_ChartPanel .series.lowlight {
|
|
7
|
-
opacity: 0.3!important;
|
|
8
|
-
}
|
|
1
|
+
.layout_ChartPanel .series.highlight {
|
|
2
|
+
stroke-width: 2px;
|
|
3
|
+
opacity: 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.layout_ChartPanel .series.lowlight {
|
|
7
|
+
opacity: 0.3!important;
|
|
8
|
+
}
|