Skip to content

Commit 8ff3fb7

Browse files
committed
Update on issue Type not resolved
1 parent 3ea2417 commit 8ff3fb7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

{4703190B-4D05-4F16-B52C-B4E3B46092C2}/control/index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,14 @@
127127

128128
// load and parse SeriesLabels
129129
if (props.hasOwnProperty('SeriesLabels') && props.SeriesLabels != null) {
130-
propsSeriesLabels = props.SeriesLabels
130+
propsSeriesLabels = props.SeriesLabels
131131
}
132132

133133
// load and parse LineType
134134
if (props.hasOwnProperty('LineType') && props.LineType != null) {
135135
propsLineType = props.LineType.toLowerCase();
136136
}
137137

138-
139138

140139
let xSeries = createSeries(propsDataName, propsY_axis, propsSeriesColor);
141140
showChart(xSeries, propsX_axisname, propsY_axisname, propsSeriesLabels, propsLineType);
@@ -206,7 +205,11 @@
206205
}
207206
},
208207
dataLabels: {
209-
enabled: xLabels
208+
enabled: xLabels,
209+
textAnchor: 'start',
210+
formatter: function (val, opt) {
211+
return val + ''
212+
}
210213
},
211214
stroke: {
212215
curve: xLineType,

{4703190B-4D05-4F16-B52C-B4E3B46092C2}/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"default": true
5252
},
5353
"LineType": {
54-
"$ref": "#/control/types/TrueFalse"
54+
"$ref": "#/control/types/LineTipes"
5555
}
5656
}
5757
}

0 commit comments

Comments
 (0)