2using System.Collections.Generic;
57 get {
return new string[] {
"labels",
"values",
"color" }; }
74 int Dimension = Labels.Dimension;
75 if (Values.Dimension != Dimension)
80 LinkedList<IElement> ReverseLabelOrder =
new LinkedList<IElement>();
81 LinkedList<IElement> ReverseValueOrder =
new LinkedList<IElement>();
83 foreach (
IElement Label
in Labels.VectorElements)
84 ReverseLabelOrder.AddFirst(Label);
86 foreach (
IElement Value
in Values.VectorElements)
87 ReverseValueOrder.AddFirst(Value);
Script runtime exception.
Class managing a script expression.
Plots a two-dimensional horizontal-bar chart.
Plots a two-dimensional horizontal-bar chart.
override string FunctionName
Name of the function
override IElement Evaluate(IElement[] Arguments, Variables Variables)
Evaluates the function.
HorizontalBars(ScriptNode Labels, ScriptNode Values, ScriptNode Color, int Start, int Length, Expression Expression)
Plots a two-dimensional horizontal-bar chart.
HorizontalBars(ScriptNode Labels, ScriptNode Values, int Start, int Length, Expression Expression)
Plots a two-dimensional horizontal-bar chart.
override string[] DefaultArgumentNames
Default Argument names
Handles two-dimensional graphs.
static readonly SKColor DefaultColor
Default color: Red
Base class for multivariate funcions.
ScriptNode[] Arguments
Function arguments.
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
Expression Expression
Expression of which the node is a part.
int Start
Start position in script expression.
Basic interface for all types of elements.
Basic interface for vectors.
ArgumentType
Type of parameter used in a function definition or a lambda definition.