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
45
46
47
use DashType;
/// Line style.
///
/// # Note
///
/// This enum is a direct re-implementation of the [`DashType`] enum from the [`plotly`] crate (Ref.
/// \[1\]). As such, we have included the license of the [`plotly`] crate in the
/// [`src/plotly_licenses`](https://github.com/tamaskis/plotting/tree/main/src/plotly_licenses/LICENSE)
/// folder.
///
/// # References
///
/// * \[1\] <https://docs.rs/plotly/latest/plotly/common/enum.DashType.html>