1234567891011121314151617181920212223242526 |
- namespace Terminal.Gui;
- /// <summary>
- /// Describes how to render a single row/column of a <see cref="GraphView"/> based on the value(s) in
- /// <see cref="ISeries"/> at that location
- /// </summary>
- public class GraphCellToRender
- {
- /// <summary>Creates instance and sets <see cref="Rune"/> with default graph coloring</summary>
- /// <param name="rune"></param>
- public GraphCellToRender (Rune rune) { Rune = rune; }
- /// <summary>Creates instance and sets <see cref="Rune"/> with custom graph coloring</summary>
- /// <param name="rune"></param>
- /// <param name="color"></param>
- public GraphCellToRender (Rune rune, Attribute color) : this (rune) { Color = color; }
- /// <summary>Creates instance and sets <see cref="Rune"/> and <see cref="Color"/> (or default if null)</summary>
- public GraphCellToRender (Rune rune, Attribute? color) : this (rune) { Color = color; }
- /// <summary>Optional color to render the <see cref="Rune"/> with</summary>
- public Attribute? Color { get; set; }
- /// <summary>The character to render in the console</summary>
- public Rune Rune { get; set; }
- }
|