Click or drag to resize

FillToCurvePlotStyleGetAdditionallyUsedColumns Method

Gets the columns used additionally by this style, e.g. the label column for a label plot style, or the error columns for an error bar plot style.

Namespace: Altaxo.Graph.Gdi.Plot.Styles
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public IEnumerable<(string ColumnLabel, IReadableColumn Column, string? ColumnName, Action<IReadableColumn>? ColumnSetAction)> GetAdditionallyUsedColumns()

Return Value

IEnumerableValueTupleString, IReadableColumn, String, ActionIReadableColumn
An enumeration of tuples. Each tuple consist of the column name, as it should be used to identify the column in the data dialog. The second item of this tuple is a function that returns the column proxy for this column, in order to get the underlying column or to set the underlying column.

Implements

IGPlotStyleGetAdditionallyUsedColumns
See Also