Skip to content

Control

Summary

Represents the Chart Control class.

Signature

1
public abstract class Control : ControlBase

Namespace

cAlgo.API

Properties

Name Description
ForegroundColor { get; set; } 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".
BackgroundColor { get; set; } Gets or sets the color of the chart control background.
Padding { get; set; } 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".
VerticalContentAlignment { get; set; } Gets or sets the vertical content alignment.
HorizontalContentAlignment { get; set; } Gets or sets the horizontal content alignment.
FontWeight { get; set; } Gets or sets the font weight.
FontStyle { get; set; } Gets or sets the font style.
FontFamily { get; set; } Gets or sets the font family.
FontSize { get; set; } Gets or sets the font size.

See Also


Last update: March 23, 2023