New to Telerik UI for ASP.NET Core? Download free 30-day trial

Scatter Charts

Scatter charts display data as points that are defined by the values of their items.

Scatter Charts are useful for displaying the relation between different sets of data (for example, scientific experimental results) and plotting two-dimensional data.

Setting the Primary Axes

XY Charts, such as the Scatter and Scatter Line Charts, use one or more X and Y axes which are configured through the XAxis and the YAxis properties.

    @(Html.Kendo().Chart()
        .Name("chart")
        .Series(series => {
            series.Scatter(new double[][] { new[] { 16.4, 5.4 }, new[] { 21.7, 2 }, new[] { 25.4, 3 }, new[] { 19.0, 2.0 } });
        })
        .XAxis(x => x
            .Numeric()
            .Max(35)
        )
        .YAxis(y => y
            .Numeric()
            .Min(-5)
            .Max(25)
        )
    )

    @{ 
        var data = new double[][] { new[] { 16.4, 5.4 }, new[] { 21.7, 2 }, new[] { 25.4, 3 }, new[] { 19.0, 2.0 } };
    }
    <kendo-chart name="chart">
        <series>
            <series-item type="ChartSeriesType.Scatter" data="data">
            </series-item>
        </series>
        <x-axis>
            <x-axis-item type="numeric" max="35">
            </x-axis-item>
        </x-axis>
        <y-axis>
            <y-axis-item type="numeric" min="-5" max="25">
            </y-axis-item>
        </y-axis>
    </kendo-chart>

Positioning the Label

The X and Y axes provide options for displaying their labels either next to the axis or at the outer edges of the plot area. By default, the labels are positioned next to the axis.

To change the label position, set the Position option of the axis labels which provides the following available options:

  • (Default) When Position is set to "ChartAxisLabelsPosition.OnAxis", the labels are positioned next to the axis.
  • When Position is set to "ChartAxisLabelsPosition.End", the labels are placed at the end of the crossing axis. Typically, this configuration positions the labels at the top or right end of the Chart unless the crossing axis was reversed.
  • When Position is set to "ChartAxisLabelsPosition.Start", the labels are placed at the start of the crossing axis. Typically, this configuration positions the labels at the left or bottom end of the Chart unless the crossing axis was reversed.
    @(Html.Kendo().Chart()
        .Name("chart")
        .Series(series => {
            series.Scatter(new double[][] { new[] { 16.4, 5.4 }, new[] { 21.7, 2 }, new[] { 25.4, 3 }, new[] { 19.0, 2.0 } });
        })
        .XAxis(x => x
            .Labels(s=>s.Position(ChartAxisLabelsPosition.Start))
        )
    )

    @{ 
        var data = new double[][] { new[] { 16.4, 5.4 }, new[] { 21.7, 2 }, new[] { 25.4, 3 }, new[] { 19.0, 2.0 } };
    }
    <kendo-chart name="chart">
        <series>
            <series-item type="ChartSeriesType.Scatter" data="data">
            </series-item>
        </series>
        <x-axis>
            <x-axis-item type="numeric" max="35">
                <labels position="ChartAxisLabelsPosition.Start"></labels>
            </x-axis-item>
        </x-axis>
    </kendo-chart>

Setting Multiple Axes

You can define more X and Y axes in addition to the primary axes. The additional axes must have unique names. Series are associated to a X and Y axes by specifying their name.

Do not specify a name for the primary X and Y axes.

    @(Html.Kendo().Chart(Model)
        .Name("chart")
        .Series(series => {
            series.ScatterLine(model => model.RPM, model => model.Power)
                .Name("Power")
                .Tooltip(tooltip => tooltip.Format("{1} bhp @ {0:N0} rpm"));

            series.ScatterLine(model => model.RPM, model => model.Torque)
                .Name("Torque")
                .YAxis("torque")
                .Tooltip(tooltip => tooltip.Format("{1} lb-ft @ {0:N0} rpm"));
        })
        .XAxis(x => x
            .Numeric()
            .Title(title => title.Text("Engine rpm"))

            // Align torque axis to the right by specifying
            // a crossing value greater than or equal to the axis maximum.
            .AxisCrossingValue(0, 10000)
            .Labels(labels => labels.Format("{0:N0}"))
        )
        .YAxis(y => y
            .Numeric()
            .Title(title => title.Text("Power (bhp)"))
        )
        .YAxis(y => y
            .Numeric("torque")
            .Title(title => title.Text("Torque (lb-ft)"))
        )
    )
    @{ 
        var axisCrossing = new object[]{ "0","10000" };
    }
    <kendo-chart name="chart">
        <series>
            <series-item width="2" type="ChartSeriesType.ScatterLine" name="Power" x-field="RPM" y-field="Power" data="Model.Power">
                <tooltip format="{1} bhp @@ {0:N0} rpm">
                </tooltip>
            </series-item>
            <series-item width="2" type="ChartSeriesType.ScatterLine" name="Torque" x-field="RPM" y-axis="torque" y-field="Torque" data="Model.Torque">
                <tooltip format="{1} lb-ft @@ {0:N0} rpm">
                </tooltip>
            </series-item>
        </series>
        <x-axis>
            @* Align torque axis to the right by specifying
            a crossing value greater than or equal to the axis maximum. *@
            <x-axis-item type="numeric" axis-crossing-value="axisCrossing">
                <labels format="{0:N0}">
                </labels>
                <chart-x-axis-item-title text="Engine rpm">
                </chart-x-axis-item-title>
            </x-axis-item>
        </x-axis>
        <y-axis>
            <y-axis-item type="numeric">
                <chart-y-axis-item-title text="Power (bhp)">
                </chart-y-axis-item-title>
            </y-axis-item>
            <y-axis-item name="torque" type="numeric">
                <chart-y-axis-item-title text="Torque (lb-ft)">
                </chart-y-axis-item-title>
            </y-axis-item>
        </y-axis>
        <tooltip visible="true">
        </tooltip>
    </kendo-chart>

Because no axis is specified, the first series is associated with the default Y axis. The torque series are plotted on the torque Y axis.

UI for ASP.NET Core A Scatter Chart with multiple axes

Arranging the Axes

You can also control the arrangement of the X and Y axes by specifying the values at which they cross the primary axes.

    .XAxis(x => x
        .Numeric()
        .AxisCrossingValue(0, 2500)
    )
    @{ 
        var axisCrossing = new object[]{ "0","2500" };
    }
        <x-axis>
            <x-axis-item type="numeric" axis-crossing-value="axisCrossing">
            </x-axis-item>
        </x-axis>

The primary Y axis crosses the X axis at point 0 (leftmost). The second, torque Y axis crosses the X axis at the 2500 mark or at its right end, whichever comes first.

UI for ASP.NET Core A Scatter Line Chart with customized axis crossing value

See Also

In this article