You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ var data = [
43
43
constoptions= {
44
44
fieldSeparator:',',
45
45
quoteStrings:'"',
46
-
decimalseparator:'.',
46
+
decimalSeparator:'.',
47
47
showLabels:true,
48
48
showTitle:true,
49
49
title:'My Awesome CSV',
@@ -67,7 +67,7 @@ csvExporter.generateCsv(data);
67
67
|**fieldSeparator**| , | Defines the field separator character |
68
68
|**filename**| 'generated' | Sets the name of the downloaded file. ".csv" will be appended to the value provided. |
69
69
|**quoteStrings**| " | If provided, will use this characters to "escape" fields, otherwise will use double quotes as deafult |
70
-
|**decimalseparator**| . | Defines the decimal separator character (default is .). If set to "locale", it uses the [language sensitive representation of the number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString).|
70
+
|**decimalSeparator**| . | Defines the decimal separator character (default is .). If set to "locale", it uses the [language sensitive representation of the number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString).|
71
71
|**showLabels**| false | If true, the first row will be the `headers` option or object keys if `useKeysAsHeaders` is present|
72
72
|**showTitle**| false | Includes the title as the first line in the generated file |
73
73
|**title**| 'My Generated Report' | This string will be used as the report title |
0 commit comments