@oliasoft-open-source/charts-library 7.0.0-beta-2 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1244,18 +1244,18 @@ declare module 'chart.js' {
|
|
|
1244
1244
|
|
|
1245
1245
|
declare module 'chart.js' {
|
|
1246
1246
|
interface PluginOptionsByType<TType extends ChartType> {
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
}
|
|
1247
|
+
calloutConnectorPlugin?: {
|
|
1248
|
+
enableCalloutAnnotation?: boolean;
|
|
1249
|
+
};
|
|
1250
1250
|
}
|
|
1251
1251
|
}
|
|
1252
1252
|
|
|
1253
1253
|
|
|
1254
1254
|
declare module 'chart.js' {
|
|
1255
1255
|
interface PluginOptionsByType<TType extends ChartType> {
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
};
|
|
1256
|
+
lineMarkersPlugin?: {
|
|
1257
|
+
enabled?: boolean;
|
|
1258
|
+
} | TLineMarkersOptions;
|
|
1259
1259
|
}
|
|
1260
1260
|
}
|
|
1261
1261
|
|
package/package.json
CHANGED