Skip to content

Control

Summary

Represents the Chart Control class.

Signature

1
public abstract class Control : ControlBase

Namespace

cAlgo.API

See Also

Properties

ForegroundColor

Summary

Gets or sets the color of the chart control foreground. Check the Color class for the ARGB (alpha, red, green,blue) color values, or use the strings Color.Red, Color.FromName("Red"), Color.FromArgb(255, 0, 0),Color.FromHex("#ff0000"), "Red", "#ff0000".

Signature

1
public Color ForegroundColor {get; set;}

Return Value

Color

BackgroundColor

Summary

Gets or sets the color of the chart control background.

Signature

1
public Color BackgroundColor {get; set;}

Return Value

Color

Padding

Summary

Gets or sets the chart control padding. Property value can be set using Thickness, number, or a string newThickness(5), new Thickness(1, 2, 3, 4), 5, "5", "1 2 3 4".

Signature

1
public Thickness Padding {get; set;}

Return Value

Thickness

VerticalContentAlignment

Summary

Gets or sets the vertical content alignment.

Signature

1
public VerticalAlignment VerticalContentAlignment {get; set;}

Return Value

VerticalAlignment

HorizontalContentAlignment

Summary

Gets or sets the horizontal content alignment.

Signature

1
public HorizontalAlignment HorizontalContentAlignment {get; set;}

Return Value

HorizontalAlignment

FontWeight

Summary

Gets or sets the font weight.

Signature

1
public FontWeight FontWeight {get; set;}

Return Value

FontWeight

Related Tutorials

FontStyle

Summary

Gets or sets the font style.

Signature

1
public FontStyle FontStyle {get; set;}

Return Value

FontStyle

Related Tutorials

FontFamily

Summary

Gets or sets the font family.

Signature

1
public string FontFamily {get; set;}

Return Value

string

FontSize

Summary

Gets or sets the font size.

Signature

1
public double FontSize {get; set;}

Return Value

double