Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mikima committed Jul 6, 2023
2 parents a81a8da + 808b6c6 commit 4a69b9a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/circularDendrogram/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export function render(
// compute padding
const padding = (circumference - totalValue) / (hierarchy.leaves().length - 1)

// dictionary to choose algorythm according to options
// dictionary to choose algorithm according to options
const layouts = {
'Cluster Dendogram': d3.cluster(),
Tree: d3.tree(),
Expand Down
2 changes: 1 addition & 1 deletion src/circularDendrogram/visualOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const visualOptions = {

layout: {
type: 'text',
label: 'Layout algorythm',
label: 'Layout algorithm',
group: 'chart',
options: ['Cluster Dendogram', 'Tree'],
default: 'Tree',
Expand Down
2 changes: 1 addition & 1 deletion src/dendrogram/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function render(
// compute padding
const padding = (chartHeight - totalValue) / (hierarchy.leaves().length - 1)

// dictionary to choose algorythm according to options
// dictionary to choose algorithm according to options
const layouts = {
'Cluster Dendogram': d3.cluster(),
Tree: d3.tree(),
Expand Down
2 changes: 1 addition & 1 deletion src/dendrogram/visualOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const visualOptions = {

layout: {
type: 'text',
label: 'Layout algorythm',
label: 'Layout algorithm',
group: 'chart',
options: ['Cluster Dendogram', 'Tree'],
default: 'Tree',
Expand Down

0 comments on commit 4a69b9a

Please sign in to comment.