LiveChartsSettings
Class

Assembly LiveChartsCore
Namespace LiveChartsCore.Kernel

Summary:
LiveCharts global settings

Inheritance:
Object =>
LiveChartsSettings

Properties

Gets or sets the default easing function.
Type: Func<Single, Single>
Gets or sets the default animations speed.
Type: TimeSpan
Gets or sets the default zoom speed.
Type: Double
Gets or sets the default zoom mode.
Type: ZoomAndPanMode
Gets or sets the default legend position.
Type: LegendPosition
Gets or sets the default legend background paint.
Type: Paint
Gets or sets the default legend text paint.
Type: Paint
Gets or sets the default legend text size.
Type: Double
Gets or sets the default tooltip position.
Type: TooltipPosition
Gets or sets the default tooltip background paint.
Type: Paint
Gets or sets the default tooltip text paint.
Type: Paint
Gets or sets the default tooltip text size.
Type: Double
Gets or sets the default max with for labels inside tooltips and legends.
Type: Double
Gets or sets the default finding strategy.
Type: FindingStrategy
Gets or sets the default polar initial rotation.
Type: Double
Gets or sets the default update throttling timeout
Type: TimeSpan
Gets or sets a value indicating whether the pie slices are clockwise.
Type: Boolean
Gets or sets the initial rotation for pie charts, this value is used to calculate the pie slices.
Type: Double
Gets or sets the maximum angle for pie charts, this value is used to calculate the pie slices.
Type: Double
Gets or sets the maximum value for pie charts, this value is used to calculate the pie slices.
Type: Double
Gets or sets the minimum value for pie charts, this value is used to calculate the pie slices.
Type: Double
Gets or sets a value indicating whether the polar series should fit to bounds.
Type: Boolean
Gets or sets the total angle for polar series, this value is used to calculate the polar chart.
Type: Double
Gets or sets the outer radius for polar series, this value is used to calculate the polar chart.
Type: Double

Methods

// Adds or replaces a mapping for a given type, the mapper defines how a type is mapped to a Coordinate in the chart.
Func<TModel, Int32, Coordinate> mapper// The mapper.
)
// Indicates that the library should render tooltips and legends in the right to left mode, if not defined, the library will use the system culture to determine if it should render in right to left mode or not.
// Sets the default animations speed.
TimeSpan animationsSpeed// The animations speed.
)
// Sets the default the default easing function.
Func<Single, Single> easingFunction// The easing function.
)
// Sets the default the default zoom speed.
Double speed// The speed.
)
// Sets the default the default zoom mode.
ZoomAndPanMode zoomMode// The zoom mode.
)
// Sets the default the default update throttling timeout
TimeSpan timeout// The update throttling timeout.
)
// Sets the default legend background paint.
Paint paint// The paint.
)
// Sets the default legend text paint.
Paint paint// The paint.
)
// Sets the default legend text size.
Double size// The size.
)
// Sets the default tooltip background paint.
Paint paint// The paint.
)
// Sets the default tooltip text paint.
Paint paint// The paint.
)
// Sets the default tooltip text size.
Double size// The size.
)
// Adds the default styles.
Action<Theme> builder// The builder.
)
// Gets the styles builder.
// Gets the styles builder.
// Enables LiveCharts to be able to plot short, int, long, float, double, decimal, short?, int?, long?, float?, double?, decimal?.
// Configures the rendering settings for LiveCharts.
Action<RenderingSettings> builder// The rendering settings builder.
)