Skip to content

Commit 4e9289c

Browse files
committed
build - 5.3.3
1 parent 0213371 commit 4e9289c

File tree

6 files changed

+181
-67
lines changed

6 files changed

+181
-67
lines changed

dist/apexcharts-legend.css

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
.apexcharts-flip-y {
2+
transform: scaleY(-1) translateY(-100%);
3+
transform-origin: top;
4+
transform-box: fill-box;
5+
}
6+
.apexcharts-flip-x {
7+
transform: scaleX(-1);
8+
transform-origin: center;
9+
transform-box: fill-box;
10+
}
11+
.apexcharts-legend {
12+
display: flex;
13+
overflow: auto;
14+
padding: 0 10px;
15+
}
16+
.apexcharts-legend.apexcharts-legend-group-horizontal {
17+
flex-direction: column;
18+
}
19+
.apexcharts-legend-group {
20+
display: flex;
21+
}
22+
.apexcharts-legend-group-vertical {
23+
flex-direction: column-reverse;
24+
}
25+
.apexcharts-legend.apx-legend-position-bottom, .apexcharts-legend.apx-legend-position-top {
26+
flex-wrap: wrap
27+
}
28+
.apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left {
29+
flex-direction: column;
30+
bottom: 0;
31+
}
32+
.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left, .apexcharts-legend.apx-legend-position-top.apexcharts-align-left, .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left {
33+
justify-content: flex-start;
34+
align-items: flex-start;
35+
}
36+
.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center, .apexcharts-legend.apx-legend-position-top.apexcharts-align-center {
37+
justify-content: center;
38+
align-items: center;
39+
}
40+
.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-right, .apexcharts-legend.apx-legend-position-top.apexcharts-align-right {
41+
justify-content: flex-end;
42+
align-items: flex-end;
43+
}
44+
.apexcharts-legend-series {
45+
cursor: pointer;
46+
line-height: normal;
47+
display: flex;
48+
align-items: center;
49+
}
50+
.apexcharts-legend-text {
51+
position: relative;
52+
font-size: 14px;
53+
}
54+
.apexcharts-legend-text *, .apexcharts-legend-marker * {
55+
pointer-events: none;
56+
}
57+
.apexcharts-legend-marker {
58+
position: relative;
59+
display: flex;
60+
align-items: center;
61+
justify-content: center;
62+
cursor: pointer;
63+
margin-right: 1px;
64+
}
65+
66+
.apexcharts-legend-series.apexcharts-no-click {
67+
cursor: auto;
68+
}
69+
.apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series {
70+
display: none !important;
71+
}
72+
.apexcharts-inactive-legend {
73+
opacity: 0.45;
74+
}

dist/apexcharts.amd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/apexcharts.common.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/apexcharts.esm.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)