mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 17:38:54 +00:00
Remove SERIES_TYPES from Visualization.
This commit is contained in:
parent
d5cd02cab3
commit
d2d4f6186f
@ -62,9 +62,9 @@
|
|||||||
'Cohort': Visualization.prototype.TYPES.COHORT
|
'Cohort': Visualization.prototype.TYPES.COHORT
|
||||||
};
|
};
|
||||||
scope.seriesTypes = {
|
scope.seriesTypes = {
|
||||||
'Line': Visualization.prototype.SERIES_TYPES.LINE,
|
'Line': 'line',
|
||||||
'Column': Visualization.prototype.SERIES_TYPES.COLUMN,
|
'Column': 'column',
|
||||||
'Area': Visualization.prototype.SERIES_TYPES.AREA,
|
'Area': 'area',
|
||||||
'Scatter': 'scatter'
|
'Scatter': 'scatter'
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -94,7 +94,7 @@
|
|||||||
// Chart
|
// Chart
|
||||||
return {
|
return {
|
||||||
'series': {
|
'series': {
|
||||||
'type': Visualization.prototype.SERIES_TYPES.LINE
|
'type': scope.seriesTypes[0]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -291,11 +291,6 @@
|
|||||||
'CHART': 'CHART',
|
'CHART': 'CHART',
|
||||||
'COHORT': 'COHORT',
|
'COHORT': 'COHORT',
|
||||||
'TABLE': 'TABLE'
|
'TABLE': 'TABLE'
|
||||||
},
|
|
||||||
SERIES_TYPES: {
|
|
||||||
'LINE': 'line',
|
|
||||||
'COLUMN': 'column',
|
|
||||||
'AREA': 'area'
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user