Skip to content

Commit

Permalink
Fixed #19465, wrong property in numberFormatter API demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrzejruta committed Aug 2, 2023
1 parent b62d455 commit 51c5400
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions samples/highcharts/members/highcharts-numberformat/demo.js
Expand Up @@ -16,7 +16,7 @@ var converters = {
Highcharts.setOptions({
lang: {
decimalPoint: '\u066B',
thousandsSeparator: '\u066C'
thousandsSep: '\u066C'
}
});

Expand All @@ -35,7 +35,10 @@ Highcharts.chart('container', {
},

series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
data: [
29.9, 71.5, 106.4, 129.2, 144.0, 176.0,
135.6, 148.5, 216.4, 194.1, 95.6, 54.4
],
dataLabels: {
enabled: true,
format: '{y:.1f}',
Expand Down

0 comments on commit 51c5400

Please sign in to comment.