For the time being the following workaround can be used:
JavaScript:
<script>
function pageLoad() {
var chart = $find("<%=RadHtmlChart1.ClientID%>");
chart._chartObject.options.series[0].missingValues = "Gap";
chart.repaint();
}
</script>
ASPX:
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server">
<PlotArea>
<Series>
<telerik:LineSeries MissingValues="Gap">
<SeriesItems>
<telerik:CategorySeriesItem Y="30" />
<telerik:CategorySeriesItem Y="10" />
<telerik:CategorySeriesItem />
<telerik:CategorySeriesItem Y="30" />
</SeriesItems>
</telerik:LineSeries>
</Series>
</PlotArea>
</telerik:RadHtmlChart>
Same problem with LineSeries:
<telerik:RadHtmlChart ID="Chart1"
runat="server"
Width="670px"
Height="180px"
Transitions="true">
<ChartTitle Text="">
<Appearance Align="Center" BackgroundColor="White" Position="Top" Visible="false">
</Appearance>
</ChartTitle>
<Legend>
<Appearance BackgroundColor="White" Position="Bottom">
</Appearance>
</Legend>
<PlotArea>
<Series>
<telerik:LineSeries DataFieldY="SetDays" ZIndex="1">
<Appearance FillStyle-BackgroundColor="DeepSkyBlue" />
<LabelsAppearance Position="Above" Visible="false" />
<LineAppearance Width="3" />
<MarkersAppearance MarkersType="Square" BackgroundColor="White" Size="8" BorderColor="Orange" BorderWidth="2" />
<TooltipsAppearance Color="White">
<ClientTemplate>
#=dataItem.SetToolTip#
</ClientTemplate>
</TooltipsAppearance>
</telerik:LineSeries>
<telerik:LineSeries DataFieldY="FltrDays" ZIndex="0" MissingValues="Gap">
<Appearance FillStyle-BackgroundColor="#cc0099" />
<LabelsAppearance Position="Above" Visible="false" />
<LineAppearance Width="3" />
<MarkersAppearance MarkersType="Square" BackgroundColor="White" Size="8" BorderColor="#33cc33" BorderWidth="2" />
<TooltipsAppearance Color="White">
<ClientTemplate>
#=dataItem.FltrToolTip#
</ClientTemplate>
</TooltipsAppearance>
</telerik:LineSeries>
</Series>
<YAxis AxisCrossingValue="0" Color="#b3b3b3" MajorTickSize="1" MajorTickType="Outside"
MinorTickSize="1" MinorTickType="Outside" MinValue="0" Reversed="false">
<LabelsAppearance DataFormatString="{0}" RotationAngle="0" Skip="0" Step="1" Color="#000000">
</LabelsAppearance>
<MajorGridLines Color="#EFEFEF" Width="1"></MajorGridLines>
<MinorGridLines Color="#F7F7F7" Width="1"></MinorGridLines>
</YAxis>
<XAxis DataLabelsField="ChartDate">
<LabelsAppearance Color="Black" RotationAngle="-90"></LabelsAppearance>
<MinorGridLines Visible="false"></MinorGridLines>
<MajorGridLines Visible="false"></MajorGridLines>
</XAxis>
</PlotArea>
</telerik:RadHtmlChart>
Hi, Indeed, this issue doesn't seem to be fixed for ScatterLineSeries. Can you please fix it? Thanks in advance.
Was this fix ever implemented? I see the same issue with MissingValues="Gap" not working and this fix doesn't seem to help now either. Is there an update? Thanks.
The fix of the issue will be included in Q1 2014 release.