@barchart/chart-lib 2.216.1 → 2.217.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.
- chart-lib/barchart.chart.d.ts +5 -0
- chart-lib/barchart.chart.js +1 -1
- chart-lib/package.json +1 -1
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -1075,6 +1075,7 @@ declare module "@barchart/chart-lib" {
|
|
|
1075
1075
|
mode?: FeedMode;
|
|
1076
1076
|
hostingModel?: HostingModel;
|
|
1077
1077
|
logo?: string;
|
|
1078
|
+
logoClickable?: boolean;
|
|
1078
1079
|
baseUrl?: BaseUrl;
|
|
1079
1080
|
overrides?: Overrides;
|
|
1080
1081
|
extensions?: Extensions;
|
|
@@ -1158,6 +1159,10 @@ declare module "@barchart/chart-lib" {
|
|
|
1158
1159
|
* @default 18
|
|
1159
1160
|
*/
|
|
1160
1161
|
fontSize?: number;
|
|
1162
|
+
/** Weight of the title text, as a CSS font-weight property.
|
|
1163
|
+
* @default "normal"
|
|
1164
|
+
*/
|
|
1165
|
+
fontWeight?: string;
|
|
1161
1166
|
};
|
|
1162
1167
|
};
|
|
1163
1168
|
|