Skip to content
Closed
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/component/legend/ScrollableLegendView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ class ScrollableLegendView extends LegendView {
// Strategy:
// (1) Always align based on the left/top most item.
// (2) It is user-friendly that the last item shown in the
// current window is shown at the begining of next window.
// current window is shown at the beginning of next window.
// Otherwise if half of the last item is cut by the window,
// it will have no chance to display entirely.
// (3) Consider that item size probably be different, we
Expand Down
4 changes: 2 additions & 2 deletions src/component/toolbox/ToolboxModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ class ToolboxModel extends ComponentModel<ToolboxOption> {
// An initial ec option
// chart.setOption( {toolbox: {feature: { featureA: {}, featureB: {}, }} } )
// indicates the declared toolbox features need to be enabled regardless of whether property
// "show" is explicity specified. But the subsequent `setOption` in merge mode requires property
// "show: false" to be explicity specified if intending to remove features, for example:
// "show" is explicitly specified. But the subsequent `setOption` in merge mode requires property
// "show: false" to be explicitly specified if intending to remove features, for example:
// chart.setOption( {toolbox: {feature: { featureA: {show: false}, featureC: {} } )
// We keep backward compatibility and perform specific processing to prevent theme
// settings from breaking it.
Expand Down
2 changes: 1 addition & 1 deletion src/coord/axisNiceTicks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function calcNiceForIntervalOrLogScale(
const autoIntervalPrecision = config.intervalPrecision;
const autoInterval = config.interval;

// When auto calculated interval is not preferable, users are allowed to explicity specify
// When auto calculated interval is not preferable, users are allowed to explicitly specify
// `interval`, `min`, `max` to customize the axis. A typical case is, in angle axis with angle
// 0 - 360, where the internally calculated interval is not 60-based.
// NOTICE:
Expand Down