@progress/kendo-charts 2.6.0-dev.202410180430 → 2.6.0-dev.202410221457

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.
@@ -117,7 +117,7 @@ var HeatmapChart = (function (ChartElement) {
117
117
  }, series);
118
118
  }
119
119
 
120
- return options;
120
+ return Object.assign({}, options);
121
121
  };
122
122
 
123
123
  HeatmapChart.prototype.createPoint = function createPoint (value, fields) {
@@ -108,7 +108,7 @@ class HeatmapChart extends ChartElement {
108
108
  }, series);
109
109
  }
110
110
 
111
- return options;
111
+ return Object.assign({}, options);
112
112
  }
113
113
 
114
114
  createPoint(value, fields) {
@@ -0,0 +1,67 @@
1
+ import {
2
+ VerticalStripesPatternOptions,
3
+ DiagonalStripesPatternOptions,
4
+ CrosshatchPatternOptions,
5
+ GridPatternOptions,
6
+ DotsPatternOptions
7
+ } from '@progress/kendo-drawing';
8
+
9
+ /**
10
+ * Represents the VerticalStripesPattern of the series.
11
+ */
12
+ export interface VerticalStripesPattern extends VerticalStripesPatternOptions {
13
+ /**
14
+ * The type of the pattern.
15
+ */
16
+ type: 'verticalStripes';
17
+ }
18
+
19
+ /**
20
+ * Represents the CrosshatchPattern of the series.
21
+ */
22
+ export interface CrosshatchPattern extends CrosshatchPatternOptions {
23
+ /**
24
+ * The type of the pattern.
25
+ */
26
+ type: 'crosshatch';
27
+ }
28
+
29
+ /**
30
+ * Represents the DiagonalStripesPattern of the series.
31
+ */
32
+ export interface DiagonalStripesPattern extends DiagonalStripesPatternOptions {
33
+ /**
34
+ * The type of the pattern.
35
+ */
36
+ type: 'diagonalStripes';
37
+ }
38
+
39
+ /**
40
+ * Represents the GridPattern of the series.
41
+ */
42
+ export interface GridPattern extends GridPatternOptions {
43
+ /**
44
+ * The type of the pattern.
45
+ */
46
+ type: 'grid';
47
+ }
48
+
49
+ /**
50
+ * Represents the DotPattern of the series.
51
+ */
52
+ export interface DotPattern extends DotsPatternOptions {
53
+ /**
54
+ * The type of the pattern.
55
+ */
56
+ type: 'dots';
57
+ }
58
+
59
+ /**
60
+ * Represents the pattern option of the series.
61
+ */
62
+ export type SeriesPattern =
63
+ | VerticalStripesPattern
64
+ | CrosshatchPattern
65
+ | DiagonalStripesPattern
66
+ | GridPattern
67
+ | DotPattern;
@@ -3,3 +3,4 @@ export { DashType } from './field-types/dash-type';
3
3
  export { Margin } from './field-types/margin.interface';
4
4
  export { Padding } from './field-types/padding.interface';
5
5
  export { RenderMode } from './field-types/render-mode';
6
+ export { SeriesPattern } from './field-types/series-pattern.interface';