FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
StockSharp/Charting.Interfaces/IChartLineElement.cs at master · StockSharp/StockSharp · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
StockSharp
/
StockSharp
Public
Notifications
You must be signed in to change notification settings
Fork
2.3k
Star
10.7k
Code
Issues
1
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
StockSharp
/
Charting.Interfaces
/
IChartLineElement.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (31 loc) · 978 Bytes
Breadcrumbs
StockSharp
/
Charting.Interfaces
/
IChartLineElement.cs
Copy path
File metadata and controls
37 lines (31 loc) · 978 Bytes
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
namespace
StockSharp
.
Charting
;
/// <summary>
/// The chart element representing a line.
/// </summary>
public
interface
IChartLineElement
:
IChartElement
{
/// <summary>
/// Line color (candles, etc.), with which it will be drawn on chart.
/// </summary>
Color
Color
{
get
;
set
;
}
/// <summary>
/// Additional line color (candles, etc.), with which it will be drawn on the chart.
/// </summary>
Color
AdditionalColor
{
get
;
set
;
}
/// <summary>
/// The thickness of the line (candle, etc.) with which it will be drawn on the chart. The default is 1.
/// </summary>
int
StrokeThickness
{
get
;
set
;
}
/// <summary>
/// The smoothing of the line drawing. The default is enabled.
/// </summary>
bool
AntiAliasing
{
get
;
set
;
}
/// <summary>
/// The line drawing style. The default is <see cref="DrawStyles.Line"/>.
/// </summary>
DrawStyles
Style
{
get
;
set
;
}
/// <summary>
/// Show Y-axis marker.
/// </summary>
bool
ShowAxisMarker
{
get
;
set
;
}
}
Back
|
FazBrowse Home
|
New Git URL