Description
Plotly.Layout type does not include the bargap property.
Steps to reproduce
- Install plotly.js 4.0.0 and set up a new typescript project that includes the types
- In a new, typechecked file, write
const example: Partial<Plotly.Layout> = {bargap: 0} and import the Plotly.Layout type
Expected: no type error
Actual: type error including 'bargap' does not exist in type Partial<Plotly.Layout>
Description
Plotly.Layout type does not include the bargap property.
Steps to reproduce
const example: Partial<Plotly.Layout> = {bargap: 0}and import the Plotly.Layout typeExpected: no type error
Actual: type error including
'bargap' does not exist in type Partial<Plotly.Layout>