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 @@ -181,7 +181,7 @@ export type ChartPointDropEvent = CustomEvent<{ point: Point; originalEvent: Cha
181
181
export type ChartPointDragEvent = CustomEvent < { point : Point ; originalEvent : ChartPointEvent } > ;
182
182
183
183
/**
184
- * Fired when when the minimum and maximum is set for the X axis.
184
+ * Fired when the minimum and maximum is set for the X axis.
185
185
*/
186
186
export type ChartXaxesExtremesSetEvent = CustomEvent < {
187
187
axis : Axis ;
@@ -192,7 +192,7 @@ export type ChartXaxesExtremesSetEvent = CustomEvent<{
192
192
} > ;
193
193
194
194
/**
195
- * Fired when when the minimum and maximum is set for the Y axis.
195
+ * Fired when the minimum and maximum is set for the Y axis.
196
196
*/
197
197
export type ChartYaxesExtremesSetEvent = CustomEvent < {
198
198
axis : Axis ;
Original file line number Diff line number Diff line change @@ -726,7 +726,7 @@ export const ChartMixin = (superClass) =>
726
726
get __xAxesEventNames ( ) {
727
727
return {
728
728
/**
729
- * Fired when when the minimum and maximum is set for the x axis.
729
+ * Fired when the minimum and maximum is set for the x axis.
730
730
* @event xaxes-extremes-set
731
731
* @param {Object } detail.originalEvent object with details about the event sent
732
732
* @param {Object } axis Point object where the event was sent from
@@ -739,7 +739,7 @@ export const ChartMixin = (superClass) =>
739
739
get __yAxesEventNames ( ) {
740
740
return {
741
741
/**
742
- * Fired when when the minimum and maximum is set for the y axis.
742
+ * Fired when the minimum and maximum is set for the y axis.
743
743
* @event yaxes-extremes-set
744
744
* @param {Object } detail.originalEvent object with details about the event sent
745
745
* @param {Object } axis Point object where the event was sent from
Original file line number Diff line number Diff line change @@ -168,8 +168,8 @@ export * from './vaadin-chart-mixin.js';
168
168
* @fires {CustomEvent } point-drag-start - Fired when starting to drag a point.
169
169
* @fires {CustomEvent } point-drop - Fired when the point is dropped.
170
170
* @fires {CustomEvent } point-drag - Fired while dragging a point.
171
- * @fires {CustomEvent } xaxes-extremes-set - Fired when when the minimum and maximum is set for the X axis.
172
- * @fires {CustomEvent } yaxes-extremes-set - Fired when when the minimum and maximum is set for the Y axis.
171
+ * @fires {CustomEvent } xaxes-extremes-set - Fired when the minimum and maximum is set for the X axis.
172
+ * @fires {CustomEvent } yaxes-extremes-set - Fired when the minimum and maximum is set for the Y axis.
173
173
*/
174
174
declare class Chart extends ChartMixin ( ThemableMixin ( ElementMixin ( HTMLElement ) ) ) {
175
175
addEventListener < K extends keyof ChartEventMap > (
Original file line number Diff line number Diff line change @@ -170,8 +170,8 @@ import { ChartMixin } from './vaadin-chart-mixin.js';
170
170
* @fires {CustomEvent } point-drag-start - Fired when starting to drag a point.
171
171
* @fires {CustomEvent } point-drop - Fired when the point is dropped.
172
172
* @fires {CustomEvent } point-drag - Fired while dragging a point.
173
- * @fires {CustomEvent } xaxes-extremes-set - Fired when when the minimum and maximum is set for the X axis.
174
- * @fires {CustomEvent } yaxes-extremes-set - Fired when when the minimum and maximum is set for the Y axis.
173
+ * @fires {CustomEvent } xaxes-extremes-set - Fired when the minimum and maximum is set for the X axis.
174
+ * @fires {CustomEvent } yaxes-extremes-set - Fired when the minimum and maximum is set for the Y axis.
175
175
*
176
176
* @customElement
177
177
* @extends HTMLElement
You can’t perform that action at this time.
0 commit comments