@oliasoft-open-source/charts-library 4.4.0 → 4.4.2-beta-1

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.
@@ -62,6 +62,13 @@ export namespace WithGradient {
62
62
  }
63
63
  export { args_8 as args };
64
64
  }
65
+ export function WithDatapointsHavingLabel(args: any): import("react/jsx-runtime").JSX.Element;
66
+ export namespace WithDatapointsHavingLabel {
67
+ export namespace args_9 {
68
+ export { scatterWithDatapointsHavingLabel as chart };
69
+ }
70
+ export { args_9 as args };
71
+ }
65
72
  import { ScatterChart } from './scatter-chart';
66
73
  declare namespace singleScatterChart {
67
74
  namespace data {
@@ -222,4 +229,27 @@ declare namespace scatterWithGradient {
222
229
  }
223
230
  export { options_5 as options };
224
231
  }
232
+ declare namespace scatterWithDatapointsHavingLabel {
233
+ export namespace data_7 {
234
+ const datasets_7: {
235
+ label: string;
236
+ data: {
237
+ x: number;
238
+ y: number;
239
+ }[];
240
+ }[];
241
+ export { datasets_7 as datasets };
242
+ }
243
+ export { data_7 as data };
244
+ export namespace options_6 {
245
+ const title_7: string;
246
+ export { title_7 as title };
247
+ export namespace tooltip_1 {
248
+ const showLabelsInTooltips_1: boolean;
249
+ export { showLabelsInTooltips_1 as showLabelsInTooltips };
250
+ }
251
+ export { tooltip_1 as tooltip };
252
+ }
253
+ export { options_6 as options };
254
+ }
225
255
  declare const labels1: string[];
@@ -3,6 +3,7 @@ import { IDefaultScatterOptions } from '../../scatter-chart/scatter-chart-defaul
3
3
  interface IRawData {
4
4
  x: number;
5
5
  y: number;
6
+ label?: string;
6
7
  }
7
8
  export interface IScatterTooltipItem extends TooltipItem<'scatter'> {
8
9
  raw: IRawData;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/charts-library",
3
- "version": "4.4.0",
3
+ "version": "4.4.2-beta-1",
4
4
  "description": "React Chart Library (based on Chart.js and react-chart-js-2)",
5
5
  "homepage": "https://gitlab.com/oliasoft-open-source/charts-library",
6
6
  "resolutions": {