apexcharts
Advanced tools
Comparing version 3.27.0 to 3.27.1
{ | ||
"name": "apexcharts", | ||
"version": "3.27.0", | ||
"version": "3.27.1", | ||
"description": "A JavaScript Chart Library", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -46,7 +46,7 @@ import Utils from '../../utils/Utils' | ||
let serieName = w.config.yaxis[i].seriesName | ||
if (serieName != undefined) | ||
if (serieName) | ||
for (let j = i + 1; j <= anno.seriesIndex; j++) { | ||
if ( | ||
w.config.yaxis[j].seriesName == serieName && | ||
duplicateSeriesName.indexOf(serieName) == -1 | ||
w.config.yaxis[j].seriesName === serieName && | ||
duplicateSeriesName.indexOf(serieName) === -1 | ||
) { | ||
@@ -53,0 +53,0 @@ countDuplicateSeriesName++ |
@@ -303,5 +303,12 @@ // Typescript declarations for Apex class and module. | ||
| (number | null)[] | ||
| { x: any; y: any, fillColor?: string, strokeColor?: string }[] | ||
| [number, (number | null)][] | ||
| [number, (number | null)[]][] | ||
| { | ||
x: any; | ||
y: any; | ||
fillColor?: string; | ||
strokeColor?: string; | ||
meta?: any; | ||
goals?: any; | ||
}[] | ||
| [number, number | null][] | ||
| [number, (number | null)[]][]; | ||
}[] | ||
@@ -738,3 +745,3 @@ | ||
textAnchor?: string | ||
customLegendItems: string[] | ||
customLegendItems?: string[] | ||
labels?: { | ||
@@ -741,0 +748,0 @@ colors?: string | string[] |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
4093494
176
65852