using System; using System.Windows.Forms; using LiveCharts; using LiveCharts.Wpf; namespace Winforms.Cartesian.Inverted_Series { public partial class InvertedSeries : Form { public InvertedSeries() { InitializeComponent(); cartesianChart1.Series.Add(new VerticalLineSeries { Values = new ChartValues { 3, 5, 2, 6, 2, 7, 1 } }); cartesianChart1.Series.Add(new RowSeries { Values = new ChartValues {6, 2, 6, 3, 2, 7, 2} }); cartesianChart1.AxisY.Add(new Axis { Separator = new Separator { Step = 1} }); cartesianChart1.AxisX.Add(new Axis { MinValue = 0 }); var tooltip = new DefaultTooltip { SelectionMode = TooltipSelectionMode.SharedYValues }; cartesianChart1.DataTooltip = tooltip; } private void InvertedSeries_Load(object sender, EventArgs e) { } } }