Skip to content

This example demonstrates how to create a Tornado Chart in WinUI

Notifications You must be signed in to change notification settings

SyncfusionExamples/How-to-create-a-Tornado-Chart-in-WinUI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

How to create a WinUI Tornado Chart (SfCartesianChart)?

This article explains how to create a tornado chart using the Column chart in WinUI charts.

The tornado chart is a special type of bar chart, where the bars extended from the defined baseline, which is also used to compare the data among different types of data or categories. The bars in the tornado chart are horizontal; this chart is basically used to show the impact, such as how a condition will impact the outcome.

You can achieve the tornado chart using column charts by following the steps below:

Step 1:

Create ColumnSeries with binding of ItemsSource, XBindingPath, and YBindingPath properties.

Step 2:

Set the SfCartesianChart IsTranposed and EnableSideBySideSeriesPlacement property value as false to create columns as horizontal bar and to avoid segments arranged side by side.

Step 3:

Display the model data values in the bar segment by setting the ColumnSeries ShowDataLabels property value as true and customize the data label by using the CartesianDataLabelSettings class ContentTemplate property as demonstrated in the code example below.

[XAML]

<chart:SfCartesianChart IsTransposed="True" EnableSideBySideSeriesPlacement="False">
    <chart:SfCartesianChart.Resources>
        <ResourceDictionary>
            <viewModel:ValueConverter x:Key="ValueConverter"/>
            <DataTemplate x:Key="dataLabelTemplate">
                <Grid>
                    <TextBlock Text="{Binding Converter={StaticResource ValueConverter}}" FontSize="12"/>
                </Grid>
            </DataTemplate>
        </ResourceDictionary>
    </chart:SfCartesianChart.Resources>
   …
    <chart:SfCartesianChart.Series>
        <chart:ColumnSeries  XBindingPath="Year" YBindingPath="Export"
                             ItemsSource="{Binding Data}" ShowDataLabels="True" Label="Export">
            <chart:ColumnSeries.DataLabelSettings>
                <chart:CartesianDataLabelSettings Position="Outer" 
                             ContentTemplate="{StaticResource dataLabelTemplate}"/>
            </chart:ColumnSeries.DataLabelSettings>
        </chart:ColumnSeries>
        <chart:ColumnSeries  XBindingPath="Year" YBindingPath="Import"
                             ItemsSource="{Binding Data}" ShowDataLabels="True" Label="Import">
            <chart:ColumnSeries.DataLabelSettings>
                <chart:CartesianDataLabelSettings Position="Outer" 
                             ContentTemplate="{StaticResource dataLabelTemplate}"/>
            </chart:ColumnSeries.DataLabelSettings>
        </chart:ColumnSeries>
    </chart:SfCartesianChart.Series>
</chart:SfCartesianChart>

Step 4:

Using IValueConverter, we can customize the negative values into absolute values as per the code example below.

[C#]

public class ValueConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, string language)
    {
        //Change the negative values into absolute value.
        return Math.Abs(System.Convert.ToDouble(value));
    }

    public object ConvertBack(object value, Type targetType, object parameter, string language)
    {
        return value;
    }
}

Step 5:

Similarly, we can customize the axis label using the LabelTemplate property of the axis and by using a converter to display absolute values as per the below code example.

[XAML]

<chart:SfCartesianChart.YAxes>
    <chart:NumericalAxis>
        <chart:NumericalAxis.LabelTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding Content, Converter={StaticResource ValueConverter}}"/>
            </DataTemplate>
        </chart:NumericalAxis.LabelTemplate>
    </chart:NumericalAxis>
</chart:SfCartesianChart.YAxes>

Output:

WinUI Tornado Chart

KB article - How to create a WinUI Tornado Chart (SfCartesianChart)?

See also

How to create a Column Chart in WinUI?

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages