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/ChartAPI/ChartMap.fs
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1183,6 +1183,8 @@ module ChartMap =
1183
1183
/// <paramname="LineDash">sets the drawing style of the line</param>
1184
1184
/// <paramname="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
1185
1185
/// <paramname="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>
1186
+
/// <paramname="EnableClustering">Wether or not to enable clustering for points</param>
1187
+
/// <paramname="Cluster">Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)</param>
1186
1188
/// <paramname="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// <paramname="LineDash">sets the drawing style of the line</param>
1292
1303
/// <paramname="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
1293
1304
/// <paramname="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>
1305
+
/// <paramname="EnableClustering">Wether or not to enable clustering for points</param>
1306
+
/// <paramname="Cluster">Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)</param>
1294
1307
/// <paramname="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// <paramname="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
1374
1391
/// <paramname="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
1375
1392
/// <paramname="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>
1393
+
/// <paramname="EnableClustering">Wether or not to enable clustering for points</param>
1394
+
/// <paramname="Cluster">Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)</param>
1376
1395
/// <paramname="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// <paramname="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
1447
1470
/// <paramname="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
1448
1471
/// <paramname="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>
1472
+
/// <paramname="EnableClustering">Wether or not to enable clustering for points</param>
1473
+
/// <paramname="Cluster">Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)</param>
1449
1474
/// <paramname="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// <summary>Clustering options for points on mapbox traces</summary>
9
+
typeMapboxCluster()=
10
+
11
+
inherit DynamicObj()
12
+
13
+
/// <summary>
14
+
/// Returns a new MapboxCluster object with the given styles
15
+
/// </summary
16
+
/// <param name="Color">Sets the color for each cluster step.</param>
17
+
/// <paramname="Enabled">Determines whether clustering is enabled or disabled.</param>
18
+
/// <paramname="MaxZoom">Sets the maximum zoom level. At zoom levels equal to or greater than this, points will never be clustered.</param>
19
+
/// <paramname="Opacity">Sets the marker opacity.</param>
20
+
/// <paramname="Size">Sets the size for each cluster step.</param>
21
+
/// <paramname="MultiSize">Sets the size for each cluster step.</param>
22
+
/// <paramname="Step">Sets how many points it takes to create a cluster or advance to the next cluster step. Use this in conjunction with arrays for `size` and / or `color`. If an integer, steps start at multiples of this number. If an array, each step extends from the given value until one less than the next value.</param>
23
+
/// <paramname="MultiStep">Sets how many points it takes to create a cluster or advance to the next cluster step. Use this in conjunction with arrays for `size` and / or `color`. If an integer, steps start at multiples of this number. If an array, each step extends from the given value until one less than the next value.</param>
/// Returns a function that applies the given styles to a MapboxCluster object.
49
+
/// </summary>
50
+
/// <paramname="Color">Sets the color for each cluster step.</param>
51
+
/// <paramname="Enabled">Determines whether clustering is enabled or disabled.</param>
52
+
/// <paramname="MaxZoom">Sets the maximum zoom level. At zoom levels equal to or greater than this, points will never be clustered.</param>
53
+
/// <paramname="Opacity">Sets the marker opacity.</param>
54
+
/// <paramname="Size">Sets the size for each cluster step.</param>
55
+
/// <paramname="MultiSize">Sets the size for each cluster step.</param>
56
+
/// <paramname="Step">Sets how many points it takes to create a cluster or advance to the next cluster step. Use this in conjunction with arrays for `size` and / or `color`. If an integer, steps start at multiples of this number. If an array, each step extends from the given value until one less than the next value.</param>
57
+
/// <paramname="MultiStep">Sets how many points it takes to create a cluster or advance to the next cluster step. Use this in conjunction with arrays for `size` and / or `color`. If an integer, steps start at multiples of this number. If an array, each step extends from the given value until one less than the next value.</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/Traces/TraceMapbox.fs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ type TraceMapboxStyle() =
65
65
/// <paramname="Ids">Assigns id labels to each datum. These ids for object constancy of data points during animation. Should be an array of strings, not numbers or any other type.</param>
66
66
/// <paramname="Lat">Sets the latitude coordinates (in degrees North).</param>
67
67
/// <paramname="Lon">Sets the longitude coordinates (in degrees East).</param>
68
+
/// <paramname="Cluster">Sets the clustering options for points on this trace.</param>
68
69
/// <paramname="Text">Sets text elements associated with each (x,y) pair. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y) coordinates. If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels.</param>
69
70
/// <paramname="MultiText">Sets text elements associated with each (x,y) pair. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y) coordinates. If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels.</param>
70
71
/// <paramname="TextPosition">Sets the positions of the `text` elements with respects to the (x,y) coordinates.</param>
0 commit comments