Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/chart/treemap/treemapLayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default {
seriesModel.setLayoutInfo(layoutInfo);

// FIXME: narrow down pruning boungding rect.
// Currently ec width/height is used becuases clip is not supported.
// Currently ec width/height is used because clip is not supported.
prunning(
treeRoot,
// Transform to base element coordinate system.
Expand Down
2 changes: 1 addition & 1 deletion src/component/helper/cursorHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function onIrrelevantElement(
}

// At present the `true` return is conservative. That is, the caller, such as a RoamController,
// is more likely to get a `false` return and start a roam behavior, becuase even if the
// is more likely to get a `false` return and start a roam behavior, because even if the
// `model.coordinateSystem` does not exist, the `e.topTarget` may be also a relevant element,
// such as axis split line/area or series elements, where roam should be available. Otherwise,
// if a dataZoom-served cartesian is full of series elements, the dataZoom-roaming can hardly
Expand Down
2 changes: 1 addition & 1 deletion src/coord/matrix/Matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class Matrix implements CoordinateSystem, CoordinateSystemMaster {
clamp?: MatrixClampOption | NullUndefined;
// Expand if cell merging is encountered.
// - `false`: If intersecting with a rect of merged cells, expand the result to cover it.
// This is the default option, becuase `series.data` do not support the format
// This is the default option, because `series.data` do not support the format
// `MatrixCoordRangeOption` (e.g., `[[3,5], [5,8]]`), thus merged cells can only
// be located by single cell locators (e.g., `[3, 5]`).
// - `true`: regardless of cell merging, even if the resulting rect spans accorss the merged cells.
Expand Down