Skip to content

Commit

Permalink
v8.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TorsteinHonsi committed Jun 9, 2020
1 parent a9ed457 commit a20f9d6
Show file tree
Hide file tree
Showing 619 changed files with 47,950 additions and 23,277 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "highcharts",
"version": "8.1.0",
"version": "8.1.1",
"main": "highcharts.js",
"license": "https://www.highcharts.com/license",
"types": "highcharts.d.ts"
Expand Down
12 changes: 12 additions & 0 deletions css/highcharts.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
font-size: 12px;
user-select: none;
}

.highcharts-root {
Expand Down Expand Up @@ -184,6 +185,12 @@ div.highcharts-tooltip {
stroke-linejoin: round;
}

.highcharts-empty-series {
stroke-width: 1px;
fill: none;
stroke: #cccccc;
}

.highcharts-state-hover .highcharts-graph {
stroke-width: 3;
}
Expand Down Expand Up @@ -287,6 +294,11 @@ g.highcharts-series,
stroke: #ffffff;
}

.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible),
.highcharts-a11y-marker-hidden {
opacity: 0;
}

.highcharts-point {
stroke-width: 1px;
}
Expand Down
12 changes: 12 additions & 0 deletions css/highcharts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ $indicator-negative-line: #F21313;
-webkit-tap-highlight-color: rgba(0,0,0,0);
font-family: $font-family;
font-size: 12px;
user-select: none;
}
.highcharts-root {
display: block;
Expand Down Expand Up @@ -229,6 +230,13 @@ div.highcharts-tooltip {
stroke-linecap: round;
stroke-linejoin: round;
}

.highcharts-empty-series {
stroke-width: 1px;
fill: none;
stroke: $neutral-color-20;
}

.highcharts-state-hover .highcharts-graph {
stroke-width: 3;
}
Expand Down Expand Up @@ -282,6 +290,10 @@ g.highcharts-series,
stroke-width: 1px;
stroke: $background-color;
}
.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible),
.highcharts-a11y-marker-hidden {
opacity: 0;
}
.highcharts-point {
stroke-width: 1px;
}
Expand Down
12 changes: 12 additions & 0 deletions css/themes/dark-unica.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-family: "Unica One", Arial, Helvetica, sans-serif;
font-size: 12px;
user-select: none;
}

.highcharts-root {
Expand Down Expand Up @@ -240,6 +241,12 @@ div.highcharts-tooltip {
stroke-linejoin: round;
}

.highcharts-empty-series {
stroke-width: 1px;
fill: none;
stroke: #606063;
}

.highcharts-state-hover .highcharts-graph {
stroke-width: 3;
}
Expand Down Expand Up @@ -348,6 +355,11 @@ g.highcharts-series,
stroke: #2a2a2b;
}

.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible),
.highcharts-a11y-marker-hidden {
opacity: 0;
}

.highcharts-point {
stroke-width: 1px;
}
Expand Down
12 changes: 12 additions & 0 deletions css/themes/grid-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-family: "Dosis", Arial, Helvetica, sans-serif;
font-size: 12px;
user-select: none;
}

.highcharts-root {
Expand Down Expand Up @@ -193,6 +194,12 @@ div.highcharts-tooltip {
stroke-linejoin: round;
}

.highcharts-empty-series {
stroke-width: 1px;
fill: none;
stroke: #cccccc;
}

.highcharts-state-hover .highcharts-graph {
stroke-width: 3;
}
Expand Down Expand Up @@ -301,6 +308,11 @@ g.highcharts-series,
stroke: #ffffff;
}

.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible),
.highcharts-a11y-marker-hidden {
opacity: 0;
}

.highcharts-point {
stroke-width: 1px;
}
Expand Down
12 changes: 12 additions & 0 deletions css/themes/sand-signika.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-family: "Signika", Arial, Helvetica, sans-serif;
font-size: 12px;
user-select: none;
}

.highcharts-root {
Expand Down Expand Up @@ -209,6 +210,12 @@ div.highcharts-tooltip {
stroke-linejoin: round;
}

.highcharts-empty-series {
stroke-width: 1px;
fill: none;
stroke: #cccccc;
}

.highcharts-state-hover .highcharts-graph {
stroke-width: 3;
}
Expand Down Expand Up @@ -317,6 +324,11 @@ g.highcharts-series,
stroke: none;
}

.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible),
.highcharts-a11y-marker-hidden {
opacity: 0;
}

.highcharts-point {
stroke-width: 1px;
}
Expand Down
2 changes: 1 addition & 1 deletion es-modules/annotations/MockPoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ var MockPoint = /** @class */ (function () {
* Returns a label config object - the same as
* Highcharts.Point.prototype.getLabelConfig
* @private
* @return {Annotation.MockPoint.LabelConfig} the point's label config
* @return {Highcharts.AnnotationMockLabelOptionsObject} the point's label config
*/
MockPoint.prototype.getLabelConfig = function () {
return {
Expand Down
Loading

0 comments on commit a20f9d6

Please sign in to comment.