Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eWinforms page with redirect links updates #947

Open
wants to merge 3 commits into
base: hotfix/hotfix-v25.1.35
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WindowsForms/Button/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: post
title: Getting Started with WinForms Button control | Syncfusion
description: Learn here about getting started with Syncfusion Windows Forms Button (SfButton) control and more details.
platform: WindowsForms
platform: windowsforms
control: SfButton
documentation: ug
---
Expand All @@ -21,7 +21,7 @@ This section describes how to add the SfButton to a form.

To add the SfButton to form, drag and drop the SfButton from the toolbox to the surface of the form designer.

![SfButton_img1](SfButton_images/SfButton_img1.jpeg)
![SfButton_img1.](SfButton_images/SfButton_img1.jpeg)

### Through Code

Expand Down
8 changes: 4 additions & 4 deletions WindowsForms/Pivot-Chart/Pivot-Axis.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Axis is used to locate data points in the chart area. Generally, two axes are re

By default, horizontal axis (PrimaryXAxis) and vertical axis (PrimaryYAxis) are added to the pivot chart with axis labels, grid lines, and tick lines. You can customize the axis explicitly by adding axis title or removing grid lines and tick lines that are added to the axis. The following screenshot displays the _PivotChart with Axis_

![PivotAxes_image3](Pivot-Axis_images/PivotAxes_image3.png)
![PivotAxes_image3.](Pivot-Axis_images/PivotAxes_image3.png)

## Axis title

Expand Down Expand Up @@ -75,7 +75,7 @@ Me.pivotChart1.ChartControl.PrimaryYAxis.TitleFont = New Font("Arial", 14)

{% endtabs %}

![PivotAxes_image1](Pivot-Axis_images/PivotAxes_image1.png)
![PivotAxes_image1.](Pivot-Axis_images/PivotAxes_image1.png)

*PivotChart displays the axis with title*

Expand Down Expand Up @@ -148,7 +148,7 @@ Me.chartControl1.PrimaryYAxis.GridLineType.Width = 2F

{% endtabs %}

![PivotAxes_image2](Pivot-Axis_images/PivotAxes_image2.png)
![PivotAxes_image2.](Pivot-Axis_images/PivotAxes_image2.png)

*PivotChart with customized style*

Expand All @@ -174,7 +174,7 @@ Me.pivotChart1.ChartControl.PrimaryYAxis.IsVisible = False

{% endtabs %}

![PivotAxes_image4](Pivot-Axis_images/PivotAxes_image4.png)
![PivotAxes_image4.](Pivot-Axis_images/PivotAxes_image4.png)

_PivotChart without axis_

Expand Down
6 changes: 3 additions & 3 deletions WindowsForms/chart/Chart-Axes.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ Me.chartControl1.PrimaryXAxis.ValueType = ChartValueType.Category

**Chart displaying categorical values in x-axis**

![Chart Axes](Chart-Axes_images/Chart-Axes_img39.png)
![Chart Axes.](Chart-Axes_images/Chart-Axes_img39.png)

## Indexed X Values

By default points in a series are plotted against their x and y values. However in some cases the x values are meaningless, they simply represent categories, and you do not want to plot the points against such x values. Such an x-axis that ignores the x-values and simply uses the positional value of a point in a series is said to be indexed.

In the figure below, the first chart shows a line chart that is not-indexed while the second chart shows a line chart whose x-axis is indexed.

![Chart Axes](Chart-Axes_images/Chart-Axes_img1.jpeg)
![Chart Axes.](Chart-Axes_images/Chart-Axes_img1.jpeg)

![Chart Axes](Chart-Axes_images/Chart-Axes_img2.jpeg)
![Chart Axes.](Chart-Axes_images/Chart-Axes_img2.jpeg)

N> Indexing is supported only on the x-axis in Essential Chart.

Expand Down
10 changes: 5 additions & 5 deletions WindowsForms/layoutmanagers/Creating-a-Simple-Layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: post
title: Creating a Simple Layout in Windows Forms LayoutManagers | Syncfusion
description: Learn about Creating a Simple Layout support in Syncfusion Windows Forms LayoutManagers control and more details.
platform: WindowsForms
platform: windowsforms
control: Layout Managers Package
documentation: ug
---
Expand All @@ -24,7 +24,7 @@ This topic discusses how to create a simple layout for aligning Child controls t

* Populate the form with the necessary Child controls (here, we are using Buttons), by dragging and dropping them from the toolbox.

![Drag and drop the child controls to arrange in layout manager](Overview_images/Overview_img3.jpeg)
![Drag and drop the child controls to arrange in layout manager.](Overview_images/Overview_img3.jpeg)



Expand All @@ -36,7 +36,7 @@ The Layout Manager can be added before or after adding the Child controls to the



![Adding layout manager to form](Overview_images/Overview_img4.jpeg)
![Adding layout manager to form.](Overview_images/Overview_img4.jpeg)



Expand All @@ -51,7 +51,7 @@ N> The FlowLayout, CardLayout and GridLayout controls automatically arrange the

For BorderLayout and GridBagLayout, it is necessary to configure the Child controls by changing their extended properties via the property grid in the designer so that the Child controls can be aligned properly.

![Configuring Child controls in GridBagLayout](Overview_images/Overview_img6.jpeg)
![Configuring Child controls in GridBagLayout.](Overview_images/Overview_img6.jpeg)


### Configuring Layout Manager
Expand Down Expand Up @@ -374,7 +374,7 @@ Me.layout.SetPosition(Me.btn5,Syncfusion.Windows.Forms.Tools.BorderPosition.Cent
{% endcapture %}
{{ codesnippet9 | OrderList_Indent_Level_1 }}

![Aligning child controls at different sides](Overview_images/Overview_img7.jpeg)
![Aligning child controls at different sides.](Overview_images/Overview_img7.jpeg)

{% seealso %}

Expand Down