mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
This commit is contained in:
parent
e2c506826a
commit
fd489a8331
1 changed files with 2 additions and 2 deletions
|
@ -227,9 +227,9 @@ export class VectorStyle extends AbstractStyle {
|
||||||
|
|
||||||
//scale to [0,1] domain
|
//scale to [0,1] domain
|
||||||
for (let i = 0; i < features.length; i++) {
|
for (let i = 0; i < features.length; i++) {
|
||||||
const unscaledValue = features[i].properties[fieldName];
|
const unscaledValue = parseFloat(features[i].properties[fieldName]);
|
||||||
let scaledValue;
|
let scaledValue;
|
||||||
if (typeof unscaledValue !== 'number' || isNaN(unscaledValue)) {//cannot scale
|
if (isNaN(unscaledValue)) {//cannot scale
|
||||||
scaledValue = -1;//put outside range
|
scaledValue = -1;//put outside range
|
||||||
} else if (diff === 0) {//values are identical
|
} else if (diff === 0) {//values are identical
|
||||||
scaledValue = 1;//snap to end of color range
|
scaledValue = 1;//snap to end of color range
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue