Doc: Incorrect Axis Title Styles in F# Example in Plotly.NET Docs
未关闭
适合新手
还没有人认领这个 Issue。
- 主要语言
- F#
- 星标
- 860
- 派生
- 99
- 平均合并
- 22 分钟
- 30 天内合并 PR
- 1
描述
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
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
打开链接的 Plotly.NET 文档页面中 Comparison: Usage in F# and C# 下的 Functional pipeline style in F# 部分。检查两行 Chart.withXAxisStyle 和 Chart.withYAxisStyle 是否分别与其 TitleText 值匹配,然后更新示例,使每个坐标轴标题使用匹配的样式函数。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- fsharp
- 领域
- documentation
- Issue 类型
- 文档
- 难度
- 1/5
- 预计耗时
- 1 小时以内
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 78/100