Skip to content

Commit

Permalink
Update on issue Type not resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
David-PLC committed May 17, 2023
1 parent 3ea2417 commit 8ff3fb7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions {4703190B-4D05-4F16-B52C-B4E3B46092C2}/control/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,14 @@

// load and parse SeriesLabels
if (props.hasOwnProperty('SeriesLabels') && props.SeriesLabels != null) {
propsSeriesLabels = props.SeriesLabels
propsSeriesLabels = props.SeriesLabels
}

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



let xSeries = createSeries(propsDataName, propsY_axis, propsSeriesColor);
showChart(xSeries, propsX_axisname, propsY_axisname, propsSeriesLabels, propsLineType);
Expand Down Expand Up @@ -206,7 +205,11 @@
}
},
dataLabels: {
enabled: xLabels
enabled: xLabels,
textAnchor: 'start',
formatter: function (val, opt) {
return val + ''
}
},
stroke: {
curve: xLineType,
Expand Down
2 changes: 1 addition & 1 deletion {4703190B-4D05-4F16-B52C-B4E3B46092C2}/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"default": true
},
"LineType": {
"$ref": "#/control/types/TrueFalse"
"$ref": "#/control/types/LineTipes"
}
}
}
Expand Down

0 comments on commit 8ff3fb7

Please sign in to comment.