We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff75a6 commit 594ad5dCopy full SHA for 594ad5d
docsrc/content/heatmaps.fsx
@@ -37,4 +37,24 @@ let heat1 =
37
(***do-not-eval***)
38
heat1 |> Chart.Show
39
40
-(***include-value:heat1**)
+(***include-value:heat1***)
41
+
42
+(**
43
+## Styling Colorbars
44
45
+All charts that contain colorbars can be styled by the `Chart.withColorBarStyle` function.
46
+Here is an example that adds a title to the colorbar:
47
+*)
48
49
+let heat2 =
50
+ heat1
51
+ |> Chart.withColorBarStyle(
52
+ "Im the Colorbar",
53
+ TitleSide = StyleParam.Side.Right,
54
+ TitleFont = Font.init(Size=20)
55
+ )
56
57
+(***do-not-eval***)
58
+heat2 |> Chart.Show
59
60
+(***include-value:heat2***)
0 commit comments