Description
In the Functional pipeline style in F# section under Comparison: Usage in F# and C#, I found a minor typo in the following lines:
|> Chart.withYAxisStyle (TitleText = "xAxis")
|> Chart.withXAxisStyle (TitleText = "yAxis")
The first line, Chart.withYAxisStyle, needs to be Chart.withXAxisStyle as the title is for the X-axis, not the Y-axis. Likewise, the second line, Chart.withXAxisStyle, needs to be Chart.withYAxisStyle as the title is for the Y-axis, not the X-axis.
Expected behavior
|> Chart.withXAxisStyle (TitleText = "xAxis")
|> Chart.withYAxisStyle (TitleText = "yAxis")
Actual behavior
Related information
Links
Description
In the Functional pipeline style in F# section under Comparison: Usage in F# and C#, I found a minor typo in the following lines:
The first line,
Chart.withYAxisStyle, needs to beChart.withXAxisStyleas the title is for the X-axis, not the Y-axis. Likewise, the second line,Chart.withXAxisStyle, needs to beChart.withYAxisStyleas the title is for the Y-axis, not the X-axis.Expected behavior
Actual behavior
Related information
Links