Completed
Last Updated: 18 Oct 2022 05:46 by ADMIN
Release R1 2023
Petar
Created on: 15 Oct 2012 06:51
Category: ChartView
Type: Feature Request
14
ChartView: Add support for axes rendering, when no data is available
ChartView: Add support for axes rendering, when no data is available

As a workaround add a series with one point and set its color to transparent.

<telerik:ScatterLineSeries XValueBinding="."
                  YValueBinding="."
                  Stroke="Transparent">
    <telerik:ScatterLineSeries.ItemsSource>
        <x:Array Type="system:Int32">
            <system:Int32>0</system:Int32>
        </x:Array>
    </telerik:ScatterLineSeries.ItemsSource>
</telerik:ScatterLineSeries>
0 comments