FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Plotly.NET/src/Plotly.NET.CSharp/ChartAPI/Chart3D/Point3D.cs at dev · plotly/Plotly.NET · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
plotly
/
Plotly.NET
Public
Notifications
You must be signed in to change notification settings
Fork
99
Star
859
Code
Issues
42
Pull requests
3
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Plotly.NET
/
src
/
Plotly.NET.CSharp
/
ChartAPI
/
Chart3D
/
Point3D.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
89 lines (86 loc) · 4.86 KB
Breadcrumbs
Plotly.NET
/
src
/
Plotly.NET.CSharp
/
ChartAPI
/
Chart3D
/
Point3D.cs
Copy path
File metadata and controls
89 lines (86 loc) · 4.86 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using
System
;
using
System
.
Collections
.
Generic
;
using
Plotly
.
NET
;
using
Plotly
.
NET
.
LayoutObjects
;
using
Plotly
.
NET
.
TraceObjects
;
using
static
Plotly
.
NET
.
StyleParam
;
namespace
Plotly
.
NET
.
CSharp
;
public
static
partial
class
Chart
{
/// <summary>
/// Creates a Point3D plot.
///
/// Point3D Plots plot three-dimensional data on 3 cartesian position scales in the X, Y, and Z dimension as points.
/// </summary>
/// <param name="x">Sets the x coordinates of the plotted data.</param>
/// <param name="y">Sets the y coordinates of the plotted data.</param>
/// <param name="z">Sets the z coordinates of the plotted data.</param>
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
/// <param name="Opacity">Sets the opactity of the trace</param>
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
/// <param name="Text">Sets a text associated with each datum</param>
/// <param name="MultiText">Sets individual text for each datum</param>
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
/// <param name="MarkerColor">Sets the color of the marker</param>
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
/// <param name="MarkerOutline">Sets the outline of the marker</param>
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
/// <param name="CameraProjectionType">Sets the camera projection type of this trace.</param>
/// <param name="Camera">Sets the camera of this trace.</param>
/// <param name="Projection">Sets the projection of this trace.</param>
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
public
static
GenericChart
Point3D
<
XType
,
YType
,
ZType
,
TextType
>
(
IEnumerable
<
XType
>
x
,
IEnumerable
<
YType
>
y
,
IEnumerable
<
ZType
>
z
,
Optional
<
string
>
Name
=
default
,
Optional
<
bool
>
ShowLegend
=
default
,
Optional
<
double
>
Opacity
=
default
,
Optional
<
IEnumerable
<
double
>
>
MultiOpacity
=
default
,
Optional
<
TextType
>
Text
=
default
,
Optional
<
IEnumerable
<
TextType
>
>
MultiText
=
default
,
Optional
<
StyleParam
.
TextPosition
>
TextPosition
=
default
,
Optional
<
IEnumerable
<
StyleParam
.
TextPosition
>
>
MultiTextPosition
=
default
,
Optional
<
Color
>
MarkerColor
=
default
,
Optional
<
StyleParam
.
Colorscale
>
MarkerColorScale
=
default
,
Optional
<
Line
>
MarkerOutline
=
default
,
Optional
<
StyleParam
.
MarkerSymbol3D
>
MarkerSymbol
=
default
,
Optional
<
IEnumerable
<
StyleParam
.
MarkerSymbol3D
>
>
MultiMarkerSymbol
=
default
,
Optional
<
Marker
>
Marker
=
default
,
Optional
<
StyleParam
.
CameraProjectionType
>
CameraProjectionType
=
default
,
Optional
<
Camera
>
Camera
=
default
,
Optional
<
Projection
>
Projection
=
default
,
Optional
<
bool
>
UseDefaults
=
default
)
where
XType
:
IConvertible
where
YType
:
IConvertible
where
ZType
:
IConvertible
where
TextType
:
IConvertible
=>
Plotly
.
NET
.
Chart3D_Scatter
.
Chart
.
Point3D
<
XType
,
YType
,
ZType
,
TextType
>
(
x
:
x
,
y
:
y
,
z
:
z
,
Name
:
Name
.
ToOption
(
)
,
ShowLegend
:
ShowLegend
.
ToOption
(
)
,
Opacity
:
Opacity
.
ToOption
(
)
,
MultiOpacity
:
MultiOpacity
.
ToOption
(
)
,
Text
:
Text
.
ToOption
(
)
,
MultiText
:
MultiText
.
ToOption
(
)
,
TextPosition
:
TextPosition
.
ToOption
(
)
,
MultiTextPosition
:
MultiTextPosition
.
ToOption
(
)
,
MarkerColor
:
MarkerColor
.
ToOption
(
)
,
MarkerColorScale
:
MarkerColorScale
.
ToOption
(
)
,
MarkerOutline
:
MarkerOutline
.
ToOption
(
)
,
MarkerSymbol
:
MarkerSymbol
.
ToOption
(
)
,
MultiMarkerSymbol
:
MultiMarkerSymbol
.
ToOption
(
)
,
Marker
:
Marker
.
ToOption
(
)
,
CameraProjectionType
:
CameraProjectionType
.
ToOption
(
)
,
Camera
:
Camera
.
ToOption
(
)
,
Projection
:
Projection
.
ToOption
(
)
,
UseDefaults
:
UseDefaults
.
ToOption
(
)
)
;
}
Back
|
FazBrowse Home
|
New Git URL