@progress/kendo-charts 2.6.0-dev.202410211049 → 2.6.0-dev.202410221604

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) {
@@ -47,9 +47,9 @@ export interface GridPattern extends GridPatternOptions {
47
47
  }
48
48
 
49
49
  /**
50
- * Represents the DotPattern of the series.
50
+ * Represents the DotsPattern of the series.
51
51
  */
52
- export interface DotPattern extends DotsPatternOptions {
52
+ export interface DotsPattern extends DotsPatternOptions {
53
53
  /**
54
54
  * The type of the pattern.
55
55
  */
@@ -64,4 +64,4 @@ export type SeriesPattern =
64
64
  | CrosshatchPattern
65
65
  | DiagonalStripesPattern
66
66
  | GridPattern
67
- | DotPattern;
67
+ | DotsPattern;
@@ -3,4 +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';
6
+ export * from './field-types/series-pattern.interface';