Skip to content

Commit

Permalink
build - 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
junedchhipa committed Jan 22, 2025
1 parent 3981937 commit cb88426
Show file tree
Hide file tree
Showing 6 changed files with 374 additions and 173 deletions.
2 changes: 1 addition & 1 deletion dist/apexcharts.amd.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/apexcharts.common.js

Large diffs are not rendered by default.

76 changes: 71 additions & 5 deletions dist/apexcharts.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,74 @@ rect.legend-mouseover-inactive,
}

.apexcharts-tooltip-marker {
width: 12px;
height: 12px;
display: inline-block;
position: relative;
top: 0;
margin-right: 10px;
border-radius: 50%
width: 16px;
height: 16px;
font-size: 16px;
line-height: 16px;
margin-right: 4px;
text-align: center;
vertical-align: middle;
color: inherit;
}

.apexcharts-tooltip-marker::before {
content: "";
display: inline-block;
width: 100%;
text-align: center;
color: currentcolor;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-size: 26px;
line-height: 14px;
font-weight: 900;
}

.apexcharts-tooltip-marker[shape="circle"]::before {
content: "\25CF";
}

.apexcharts-tooltip-marker[shape="square"]::before,
.apexcharts-tooltip-marker[shape="rect"]::before {
content: "\25A0";
transform: translate(-1px, -2px);
}

.apexcharts-tooltip-marker[shape="line"]::before {
content: "\2500";
}

.apexcharts-tooltip-marker[shape="diamond"]::before {
content: "\25C6";
font-size: 28px;
}

.apexcharts-tooltip-marker[shape="triangle"]::before {
content: "\25B2";
font-size: 22px;
}

.apexcharts-tooltip-marker[shape="cross"]::before {
content: "\2715";
font-size: 18px;
}

.apexcharts-tooltip-marker[shape="plus"]::before {
content: "\2715";
transform: rotate(45deg) translate(-1px, -1px);
font-size: 18px;
}

.apexcharts-tooltip-marker[shape="star"]::before {
content: "\2605";
font-size: 18px;
}

.apexcharts-tooltip-marker[shape="sparkle"]::before {
content: "\2726";
font-size: 20px;
}

.apexcharts-tooltip-series-group {
Expand Down Expand Up @@ -634,6 +696,10 @@ rect.legend-mouseover-inactive,
transition: .15s ease all
}

.apexcharts-radar-series .apexcharts-yaxis {
pointer-events: none;
}

.resize-triggers {
animation: 1ms resizeanim;
visibility: hidden;
Expand Down
8 changes: 4 additions & 4 deletions dist/apexcharts.esm.js

Large diffs are not rendered by default.

Loading

0 comments on commit cb88426

Please sign in to comment.