File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ export type ChartPointDropEvent = CustomEvent<{ point: Point; originalEvent: Cha
186
186
export type ChartPointDragEvent = CustomEvent < { point : Point ; originalEvent : ChartPointEvent } > ;
187
187
188
188
/**
189
- * Fired when when the minimum and maximum is set for the X axis.
189
+ * Fired when the minimum and maximum is set for the X axis.
190
190
*/
191
191
export type ChartXaxesExtremesSetEvent = CustomEvent < {
192
192
axis : Axis ;
@@ -197,7 +197,7 @@ export type ChartXaxesExtremesSetEvent = CustomEvent<{
197
197
} > ;
198
198
199
199
/**
200
- * Fired when when the minimum and maximum is set for the Y axis.
200
+ * Fired when the minimum and maximum is set for the Y axis.
201
201
*/
202
202
export type ChartYaxesExtremesSetEvent = CustomEvent < {
203
203
axis : Axis ;
Original file line number Diff line number Diff line change @@ -734,7 +734,7 @@ export const ChartMixin = (superClass) =>
734
734
get __xAxesEventNames ( ) {
735
735
return {
736
736
/**
737
- * Fired when when the minimum and maximum is set for the x axis.
737
+ * Fired when the minimum and maximum is set for the x axis.
738
738
* @event xaxes-extremes-set
739
739
* @param {Object } detail.originalEvent object with details about the event sent
740
740
* @param {Object } axis Point object where the event was sent from
@@ -747,7 +747,7 @@ export const ChartMixin = (superClass) =>
747
747
get __yAxesEventNames ( ) {
748
748
return {
749
749
/**
750
- * Fired when when the minimum and maximum is set for the y axis.
750
+ * Fired when the minimum and maximum is set for the y axis.
751
751
* @event yaxes-extremes-set
752
752
* @param {Object } detail.originalEvent object with details about the event sent
753
753
* @param {Object } axis Point object where the event was sent from
Original file line number Diff line number Diff line change @@ -142,8 +142,8 @@ export * from './vaadin-chart-mixin.js';
142
142
* @fires {CustomEvent } point-drag-start - Fired when starting to drag a point.
143
143
* @fires {CustomEvent } point-drop - Fired when the point is dropped.
144
144
* @fires {CustomEvent } point-drag - Fired while dragging a point.
145
- * @fires {CustomEvent } xaxes-extremes-set - Fired when when the minimum and maximum is set for the X axis.
146
- * @fires {CustomEvent } yaxes-extremes-set - Fired when when the minimum and maximum is set for the Y axis.
145
+ * @fires {CustomEvent } xaxes-extremes-set - Fired when the minimum and maximum is set for the X axis.
146
+ * @fires {CustomEvent } yaxes-extremes-set - Fired when the minimum and maximum is set for the Y axis.
147
147
*/
148
148
declare class Chart extends ChartMixin ( ThemableMixin ( ElementMixin ( HTMLElement ) ) ) {
149
149
addEventListener < K extends keyof ChartEventMap > (
Original file line number Diff line number Diff line change @@ -147,8 +147,8 @@ import { ChartMixin } from './vaadin-chart-mixin.js';
147
147
* @fires {CustomEvent } point-drag-start - Fired when starting to drag a point.
148
148
* @fires {CustomEvent } point-drop - Fired when the point is dropped.
149
149
* @fires {CustomEvent } point-drag - Fired while dragging a point.
150
- * @fires {CustomEvent } xaxes-extremes-set - Fired when when the minimum and maximum is set for the X axis.
151
- * @fires {CustomEvent } yaxes-extremes-set - Fired when when the minimum and maximum is set for the Y axis.
150
+ * @fires {CustomEvent } xaxes-extremes-set - Fired when the minimum and maximum is set for the X axis.
151
+ * @fires {CustomEvent } yaxes-extremes-set - Fired when the minimum and maximum is set for the Y axis.
152
152
*
153
153
* @customElement
154
154
* @extends HTMLElement
You can’t perform that action at this time.
0 commit comments