Plot Mode Axes in Chart for WinForms C# Tutorial
The Plot Mode is a collection of Axis Plot Mode that is able to plot data in Cartesian Area for Chart in Windows Forms C# template projects. The PlotMode property is included in the axes of Categorical, DateTimeCategorical and DateTimeContinuous. Its valid values include AmongTicks, AtTicks, and AtTicksPadded
Valid Values of Axis Plot Mode
We are going to create a Categorical Axis in C# code in the below sample and assign Categorical Axis to a Bar Series, then add the series to the Chart. When the HAxis, horizontalAxis, property of the series is assigned while inserting into the Series collection, the chart will use the axis that is controlled by the property. However, when the property is null, the chart will create and assign a default axis.
The following C# code snippet sets the PlotMode of the HAxis to AmongTicks and the GapLength to 0.5.
The Categorical Axis may create the property value automatically. However, developers can customize the PlotMode as needed by using the method of the Axes collection, Get(). The Below C# code snippet shows how to change the PlotMode to ForTicks:
To change the PlotMode property to ForTicksPadded, use the below C# code snippet
| ![]() UI Controlsfor Windows Forms .NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI DesignWinForms UI Controls WinForms Buttons UI Control WinForms Calendar UI ControlWinForms Carousel UI ControlWinForms Chart UI ControlChart PropertyChart GridChart Series TypesChart Series - AreaChart Series - BarChart Series - LineChart Series - ScatterChart Series - ScatterLineChart Series - PieChart Series - DonutChart Series - PolarChart Series - RadarChart AxesChart Axes - CategoricalChart Axes - DateTimeChart Axes - LinearChart Axes - LogarithmicChart Axes - PolarChart Axes - PlotModeChart Axes - RadicalChart Axes - Multiple AxesChart FeatureChart - Scroll and ZoomChart - SelectionChart - TooltipChart - TrackballChart - TitleChart - LegendChart - Smart LabelsChart - Drill DownChart Data BindingChart Custom PaletteChart Custom RenderingWinForms Clock UI ControlCommandBar UI ControlWinForms Dock UI ControlDesktop Alert UI ControlDropDown List UI ControlWinForms Editor UI ControlForms and Dialogs UI ControlWinForms GridView UI ControlWinForms ListView UI ControlWinForms Menu UI ControlWinForms ComboBox UI ControlWinForms PageView UI ControlPanels and Labels UI ControlWinForms Panorama UI ControlWinForms PDFViewer UI ControlWinForms Property Grid UI ControlWinForms Ribbon UI ControlWinForms PivotGrid UI ControlWinForms RichTextBox UI ControlWinForms Rotator UI ControlWinForms Scheduler UI ControlWinForms Shortcuts UI ControlWinForms SpellChecker UI ControlWinForms Track & Status UI ControlWinForms TreeView UI ControlWinForms Wizard UI ControlWinForms Test UI ControlWinForms Theme UI Control |