Skip to content

Commit 9ed55a7

Browse files
authored
Merge pull request #244 from plotly/finish-polar
2 parents 4af04b6 + c97f4d3 commit 9ed55a7

File tree

5 files changed

+681
-335
lines changed

5 files changed

+681
-335
lines changed

docs/08_0_polar_line-scatter-plots.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ let splinePolar =
9898
Chart.SplinePolar(
9999
radial,
100100
theta,
101-
Labels=["one";"two";"three";"four";"five";"six";"seven"],
101+
MultiText=["one";"two";"three";"four";"five";"six";"seven"],
102102
TextPosition=StyleParam.TextPosition.TopCenter,
103103
ShowMarkers=true
104104
)

docs/08_1_polar_bar_charts.fsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,12 @@ of how wind speed and direction are typically distributed at a particular locati
5353
open Plotly.NET.LayoutObjects
5454

5555
let windrose1 =
56+
5657
[
57-
Chart.BarPolar (r , t, Name="11-14 m/s")
58-
Chart.BarPolar (r2, t, Name="8-11 m/s")
59-
Chart.BarPolar (r3, t, Name="5-8 m/s")
60-
Chart.BarPolar (r4, t, Name="< 5 m/s")
58+
Chart.BarPolar (r , t, Name="11-14 m/s", MarkerPatternShape = StyleParam.PatternShape.Checked)
59+
Chart.BarPolar (r2, t, Name="8-11 m/s" , MarkerPatternShape = StyleParam.PatternShape.DiagonalChecked)
60+
Chart.BarPolar (r3, t, Name="5-8 m/s" , MarkerPatternShape = StyleParam.PatternShape.VerticalLines)
61+
Chart.BarPolar (r4, t, Name="< 5 m/s" , MarkerPatternShape = StyleParam.PatternShape.HorizontalLines)
6162
]
6263
|> Chart.combine
6364
|> Chart.withAngularAxis(

0 commit comments

Comments
 (0)