You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Plotly.NET.CSharp/ChartAPI/ChartMap.cs
+12
Original file line number
Diff line number
Diff line change
@@ -436,6 +436,8 @@ public static GenericChart.GenericChart BubbleGeo<LongitudesType, LatitudesType,
436
436
/// <param name="LineDash">sets the drawing style of the line</param>
437
437
/// <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
438
438
/// <param name="Below">Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".</param>
439
+
/// <param name="EnableClustering">Wether or not to enable clustering for points</param>
440
+
/// <param name="Cluster">Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)</param>
439
441
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
@@ -491,6 +495,8 @@ public static GenericChart.GenericChart ScatterMapbox<LongitudesType, LatitudesT
491
495
LineDash:LineDash.ToOption(),
492
496
Line:Line.ToOption(),
493
497
Below:Below.ToOption(),
498
+
EnableClustering:EnableClustering.ToOption(),
499
+
Cluster:Cluster.ToOption(),
494
500
UseDefaults:UseDefaults.ToOption()
495
501
);
496
502
@@ -518,6 +524,8 @@ public static GenericChart.GenericChart ScatterMapbox<LongitudesType, LatitudesT
518
524
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
519
525
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
520
526
/// <param name="Below">Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".</param>
527
+
/// <param name="EnableClustering">Wether or not to enable clustering for points</param>
528
+
/// <param name="Cluster">Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)</param>
521
529
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET.Interactive/Formatters.fs
+1-12
Original file line number
Diff line number
Diff line change
@@ -5,17 +5,6 @@ open Plotly.NET.GenericChart
5
5
6
6
moduleFormatters =
7
7
8
-
letinteractiveDoc=
9
-
"""
10
-
<div>
11
-
[CHART]
12
-
[DESCRIPTION]
13
-
</div>
14
-
"""
15
-
16
8
/// Converts a GenericChart to it's HTML representation and embeds it in a div element, together with the chart description for display in notebook environments.
0 commit comments