Skip to content

Commit 3c6b43a

Browse files
committed
coverts tickVals, tickText and tickFormat to lower case
1 parent 612a07a commit 3c6b43a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Plotly.NET/Layout/ObjectAbstractions/Polar/AngularAxis.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ type AngularAxis() =
260260
NTicks |> DynObj.setValueOpt angularAxis "nticks"
261261
Tick0 |> DynObj.setValueOpt angularAxis "tick0"
262262
DTick |> DynObj.setValueOpt angularAxis "dtick"
263-
TickVals |> DynObj.setValueOpt angularAxis "TickVals"
264-
TickText |> DynObj.setValueOpt angularAxis "TickText"
263+
TickVals |> DynObj.setValueOpt angularAxis "tickVals"
264+
TickText |> DynObj.setValueOpt angularAxis "tickText"
265265
Ticks |> DynObj.setValueOptBy angularAxis "ticks" StyleParam.TickOptions.convert
266266
TickLen |> DynObj.setValueOpt angularAxis "ticklen"
267267
TickWidth |> DynObj.setValueOpt angularAxis "tickwidth"
@@ -277,7 +277,7 @@ type AngularAxis() =
277277
SeparateThousands |> DynObj.setValueOpt angularAxis "separatethousands"
278278
TickFont |> DynObj.setValueOpt angularAxis "tickfont"
279279
TickAngle |> DynObj.setValueOpt angularAxis "tickangle"
280-
TickFormat |> DynObj.setValueOpt angularAxis "TickFormat"
280+
TickFormat |> DynObj.setValueOpt angularAxis "tickFormat"
281281
TickFormatStops |> DynObj.setValueOpt angularAxis "tickformatstops"
282282
Layer |> DynObj.setValueOptBy angularAxis "layer" StyleParam.Layer.convert
283283

0 commit comments

Comments
 (0)