-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathTickFormatStop.fs
More file actions
44 lines (39 loc) · 1.2 KB
/
TickFormatStop.fs
File metadata and controls
44 lines (39 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
namespace Plotly.NET
open Plotly.NET
open DynamicObj
open System
open System.Runtime.InteropServices
type TickFormatStop() =
inherit DynamicObj()
static member init
(
?Enabled: bool,
?DTickRange: seq<string * string>,
?Value: string,
?Name: string,
?TemplateItemName: string
) =
TickFormatStop()
|> TickFormatStop.style (
?Enabled = Enabled,
?DTickRange = DTickRange,
?Value = Value,
?Name = Name,
?TemplateItemName = TemplateItemName
)
static member style
(
?Enabled: bool,
?DTickRange: seq<string * string>,
?Value: string,
?Name: string,
?TemplateItemName: string
) =
(fun (tickFormatStop: TickFormatStop) ->
tickFormatStop
|> DynObj.withOptionalProperty "enabled" Enabled
|> DynObj.withOptionalProperty "dtickrange" DTickRange
|> DynObj.withOptionalProperty "value" Value
|> DynObj.withOptionalProperty "name" Name
|> DynObj.withOptionalProperty "templateitemname" TemplateItemName
)