public Discrete( Palettes.Discrete <TKey, TValue> palette, TValue na, ITransformation <TKey> transformation) : this(na, transformation) { defined = true; this.palette = palette; }
public Discrete( TValue[] palette, int direction, TValue na, ITransformation <TKey> transformation) : this(na, transformation) { this.palette = new Palettes.Discrete <TKey, TValue>(palette, direction); }
public Discrete( TValue[] palette, int direction, TValue na, ITransformation <TKey>?transformation) : base(transformation) { this.palette = new Palettes.Discrete <TKey, TValue>(palette, direction); this.na = na; }
public Discrete( Palettes.Discrete <TKey, TValue> palette, TValue na, ITransformation <TKey>?transformation) : base(transformation) { defined = true; this.palette = palette; this.na = na; }
public LineTypeDiscrete( Palettes.Discrete <TKey, LineType> palette, ITransformation <TKey>?transformation = null) : base(palette, default, transformation) { }
public ColorDiscrete( Palettes.Discrete <TKey, string> palette, ITransformation <TKey> transformation = null) : base(palette, default, transformation) { }
public FillDiscrete( Palettes.Discrete <TKey, string> palette, ITransformation <TKey>?transformation = null) : base(palette, default !, transformation) { }