We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5192264 commit e256aeeCopy full SHA for e256aee
package.json
@@ -2,7 +2,7 @@
2
"name": "chartjs-chart-financial",
3
"description": "Chart.js module for charting financial securities",
4
"main": "dist/chartjs-chart-financial.min.js",
5
- "version": "0.2.0",
+ "version": "0.2.1",
6
"type": "module",
7
"module": "dist/chartjs-chart-financial.esm.js",
8
"types": "types/index.d.ts",
types/index.d.ts
@@ -22,7 +22,12 @@ declare module 'chart.js' {
22
}
23
24
type CandlestickControllerDatasetOptions = BarControllerDatasetOptions & {
25
- borderColor: {
+ borderColors: {
26
+ up: string,
27
+ down: string,
28
+ unchanged: string
29
+ };
30
+ backgroundColors: {
31
up: string,
32
down: string,
33
unchanged: string
0 commit comments