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/Chart.fs
+4-1
Original file line number
Diff line number
Diff line change
@@ -192,7 +192,8 @@ type Chart =
192
192
/// <param name="Colors">Sets the color of each sector. If not specified, the default trace color set is used to pick the sector colors.</param>
193
193
/// <param name="ColorAxis">Sets a reference to a shared color axis. References to these shared color axes are "coloraxis", "coloraxis2", "coloraxis3", etc. Settings for these shared color axes are set in the layout, under `layout.coloraxis`, `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis.</param>
194
194
/// <param name="ColorBar">Sets the marker's color bar.</param>
195
-
/// <param name="Colorscale"></param>
195
+
/// <param name="Colorscale">Sets the colorscale. Has an effect only if colors is set to a numerical array. The colorscale must be an array containing arrays mapping a normalized value to an rgb, rgba, hex, hsl, hsv, or named color string. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example, `[[0, 'rgb(0,0,255)'], [1, 'rgb(255,0,0)']]`. To control the bounds of the colorscale in color space, use `marker.cmin` and `marker.cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Blackbody,Bluered,Blues,Cividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portland,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd.</param>
196
+
/// <param name="CornerRadius">Sets the maximum rounding of corners (in px).</param>
196
197
/// <param name="Gradient">Sets the marker's gradient</param>
197
198
/// <param name="Outline">Sets the marker's outline.</param>
198
199
/// <param name="Opacity">Sets the marker opacity.</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/RELEASE_NOTES.md
+2
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@
5
5
- Keep up with plotlyjs 2.x incremental updates:
6
6
- v2.17:
7
7
- [Add shift and autoshift to cartesian y axes to help avoid overlapping of multiple axes](https://github.com/plotly/Plotly.NET/commit/9f7edb8281ba87a2c122d99604af32d17efec168)
8
+
- [Introduce group attributes for scatter trace i.e. alignmentgroup, offsetgroup, scattermode and scattergap]()
9
+
- [Add marker.cornerradius attribute to treemap trace]()
8
10
- v2.16:
9
11
-[Add bounds to mapbox subplots](https://github.com/plotly/Plotly.NET/commit/046e3c472447c720ec7896f2109895028dba471c)
10
12
-[Add clustering options to scattermapbox](https://github.com/plotly/Plotly.NET/commit/0ee67e3e9251515d94a2f40858ed4fdd7398e104)
Copy file name to clipboardExpand all lines: src/Plotly.NET/Traces/ObjectAbstractions/Marker.fs
+8-2
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,8 @@ type Marker() =
24
24
/// <param name="Colors">Sets the color of each sector. If not specified, the default trace color set is used to pick the sector colors.</param>
25
25
/// <param name="ColorAxis">Sets a reference to a shared color axis. References to these shared color axes are "coloraxis", "coloraxis2", "coloraxis3", etc. Settings for these shared color axes are set in the layout, under `layout.coloraxis`, `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis.</param>
26
26
/// <param name="ColorBar">Sets the marker's color bar.</param>
27
-
/// <param name="Colorscale"></param>
27
+
/// <param name="Colorscale">Sets the colorscale. Has an effect only if colors is set to a numerical array. The colorscale must be an array containing arrays mapping a normalized value to an rgb, rgba, hex, hsl, hsv, or named color string. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example, `[[0, 'rgb(0,0,255)'], [1, 'rgb(255,0,0)']]`. To control the bounds of the colorscale in color space, use `marker.cmin` and `marker.cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Blackbody,Bluered,Blues,Cividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portland,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd.</param>
28
+
/// <param name="CornerRadius">Sets the maximum rounding of corners (in px).</param>
28
29
/// <param name="Gradient">Sets the marker's gradient</param>
29
30
/// <param name="Outline">Sets the marker's outline.</param>
30
31
/// <param name="Opacity">Sets the marker opacity.</param>
/// <param name="Colors">Sets the color of each sector. If not specified, the default trace color set is used to pick the sector colors.</param>
134
137
/// <param name="ColorAxis">Sets a reference to a shared color axis. References to these shared color axes are "coloraxis", "coloraxis2", "coloraxis3", etc. Settings for these shared color axes are set in the layout, under `layout.coloraxis`, `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis.</param>
135
138
/// <param name="ColorBar">Sets the marker's color bar.</param>
136
-
/// <param name="Colorscale"></param>
139
+
/// <param name="Colorscale">Sets the colorscale. Has an effect only if colors is set to a numerical array. The colorscale must be an array containing arrays mapping a normalized value to an rgb, rgba, hex, hsl, hsv, or named color string. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example, `[[0, 'rgb(0,0,255)'], [1, 'rgb(255,0,0)']]`. To control the bounds of the colorscale in color space, use `marker.cmin` and `marker.cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Blackbody,Bluered,Blues,Cividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portland,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd.</param>
140
+
/// <param name="CornerRadius">Sets the maximum rounding of corners (in px).</param>
137
141
/// <param name="Gradient">Sets the marker's gradient</param>
138
142
/// <param name="Outline">Sets the marker's outline.</param>
139
143
/// <param name="Opacity">Sets the marker opacity.</param>
0 commit comments