@@ -380,7 +380,7 @@ module GenericChartExtensions =
380
380
// Sets z-Axis of 3d- Charts
381
381
[<CompiledName( " WithZAxis" ) >]
382
382
[<Extension>]
383
- member this.WithZAxis ( zAxis : LinearAxis , [<Optional; DefaultParameterValue( null ) >] ? Id : StyleParam.SubPlotId ) =
383
+ member this.WithZAxis ( zAxis : LinearAxis , [<Optional; DefaultParameterValue( null ) >] ? Id : int ) =
384
384
this |> Chart.withZAxis ( zAxis, ?Id = Id)
385
385
386
386
@@ -621,13 +621,13 @@ module GenericChartExtensions =
621
621
/// Sets a map for the given chart (will only work with traces supporting geo, e.g. choropleth, scattergeo)
622
622
[<CompiledName( " WithMap" ) >]
623
623
[<Extension>]
624
- member this.WithGeo ( geo : Geo , [<Optional; DefaultParameterValue( null ) >] ? Id : StyleParam.SubPlotId ) =
624
+ member this.WithGeo ( geo : Geo , [<Optional; DefaultParameterValue( null ) >] ? Id : int ) =
625
625
this |> Chart.withGeo ( geo, ?Id = Id)
626
626
627
627
/// Sets a mapbox for the given chart (will only work with traces supporting mapboxes, e.g. choroplethmapbox, scattermapbox)
628
628
[<CompiledName( " WithMapbox" ) >]
629
629
[<Extension>]
630
- member this.withMapbox ( mapBox : Mapbox , [<Optional; DefaultParameterValue( null ) >] ? Id : StyleParam.SubPlotId ) =
630
+ member this.withMapbox ( mapBox : Mapbox , [<Optional; DefaultParameterValue( null ) >] ? Id : int ) =
631
631
this |> Chart.withMapbox ( mapBox, ?Id = Id)
632
632
633
633
0 commit comments