Skip to content

Commit

Permalink
improve description for real and imaginary components
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Oct 19, 2021
1 parent cacf161 commit d30416d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/traces/scattersmith/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@ module.exports = {
real: {
valType: 'data_array',
editType: 'calc+clearAxisTypes',
description: 'Sets the real coordinates'
description: [
'Sets the real component of the data, in units of normalized impedance',
'such that real=1, imag=0 is the center of the chart.'
].join(' ')
},

imag: {
valType: 'data_array',
editType: 'calc+clearAxisTypes',
description: 'Sets the imaginary coordinates'
description: [
'Sets the imaginary component of the data, in units of normalized impedance',
'such that real=1, imag=0 is the center of the chart.'
].join(' ')
},

text: scatterAttrs.text,
Expand Down

0 comments on commit d30416d

Please sign in to comment.