mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
feat: Support undefined valueType in axisSpec
This commit is contained in:
parent
7a454ff821
commit
936901b553
1 changed files with 6 additions and 1 deletions
|
|
@ -51,7 +51,12 @@ class AdvancedTransformation extends Transformation {
|
|||
columns: self.columns,
|
||||
|
||||
getAxisAnnotation: (axisSpec) => {
|
||||
return `${axisSpec.name} (${axisSpec.valueType})`
|
||||
let anno = `${axisSpec.name}`
|
||||
if (axisSpec.valueType) {
|
||||
anno = `${anno} (${axisSpec.valueType})`
|
||||
}
|
||||
|
||||
return anno
|
||||
},
|
||||
|
||||
getSingleDimensionAxis: (axisSpec) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue