- Home
- Forum
- ASP.NET Web Forms
- Missing Line Segment in Contiguous Line Chart Data
Missing Line Segment in Contiguous Line Chart Data
<ej:Chart ID="chrtActualsByCategoryLine" runat="server" Text="" Width="900" Height="400" CanResize="true" OnClientLoad="loadTheme" >
<PrimaryXAxis Title-Text="Date" />
<PrimaryYAxis LabelFormat="{value}" RangePadding="Round" Title-Text="Hours"/>
<CommonSeriesOptions Type="Line" /><Series/>
<Legend Visible="true"></Legend>
</ej:Chart>
The datasource XML is:
<?xml version='1.0' encoding='utf-8' ?>
<chartxml>
<data date='02/23' value1='0' value2='0' value3='0' value4='0' value5='0' />
<data date='03/02' value1='0' value2='0' value3='0' value4='0' value5='0' />
<data date='03/09' value1='0' value2='0' value3='0' value4='0' value5='0' />
<data date='03/16' value1='2.00' value2='5.30' value3='2.00' value4='2.00' value5='6.80' />
</chartxml>
And the datasource is being loaded with:
System.Data.DataSet data = new System.Data.DataSet();
data.ReadXml(new System.IO.StringReader( "XML DATA GOES HERE" ));
objChart.DataSource = data;
objChart.DataBind();
Attachment: ChartIssueImage_daf2547b.zip
Sorry for the Inconvenience caused.
We have analyzed the reported issue with our sample; we are not able to reproduce the reported issue. So, kindly check this issue again in your side. If you still face any issue, revert back us the sample and replication steps to reproduce the reported issue. We would like to know following details. So, that we can work further and provide a solution.
Could you please let us know the version of the Essential studio you are using now?
Please let us know if you need any clarification.
Thanks,
Praveenkumar
<PrimaryXAxis Title-Text="Date" />
<PrimaryYAxis Title-Text="Hours"/>
<CommonSeriesOptions Type="Line" /><Series/>
<Legend Visible="true"></Legend>
</ej:Chart>
<script src="/Scripts/jquery-1.10.2.min.js"></script>
<script src="/Scripts/jquery.easing-1.3.min.js" type="text/javascript"></script>
<script src="/Scripts/jquery.globalize.min.js" type="text/javascript"></script>
<script src="/Scripts/jsrender.min.js" type="text/javascript"></script>
<script src="/Scripts/ej.web.all.min.js"></script>
<script src="/Scripts/ej.webform.min.js"></script>
Chart1.CommonSeriesOptions.Tooltip.Visible = true;
Chart1.CommonSeriesOptions.Marker.Size.Height = 10;
Chart1.CommonSeriesOptions.Marker.Size.Width = 10;
Chart1.CommonSeriesOptions.Marker.Border.Width = 2;
Chart1.CommonSeriesOptions.Marker.Visible = true;
Chart1.CommonSeriesOptions.EnableAnimation = true;
Chart1.PrimaryYAxis.Range.Max = 8;
Chart1.PrimaryYAxis.Range.Interval = 1;
Chart1.Series.Add(new Syncfusion.JavaScript.DataVisualization.Models.Series()
{
Name = "Shop Drawings",
XName = "Date",
YName = "Value1"
});
Chart1.Series.Add(new Syncfusion.JavaScript.DataVisualization.Models.Series()
{
Name = "Checking",
XName = "Date",
YName = "Value2"
});
Chart1.Series.Add(new Syncfusion.JavaScript.DataVisualization.Models.Series()
{
Name = "Engineering",
XName = "Date",
YName = "Value3"
});
Chart1.Series.Add(new Syncfusion.JavaScript.DataVisualization.Models.Series()
{
Name = "Admin",
XName = "Date",
YName = "Value4"
});
Chart1.Series.Add(new Syncfusion.JavaScript.DataVisualization.Models.Series()
{
Name = "Report",
XName = "Date",
YName = "Value5"
});
data.ReadXml(new System.IO.StringReader(strData));
this.Chart1.DataBind();
Hi Mark,
We have analyzed the reported issue in your use case sample and we are able to reproduce the issue in 12.2 versions. But this issue is resolved in current 13.1 versions. So, can you please upgrade to the latest versions?
Praveenkumar
Hi Mark,
Sorry for the Inconvenience caused.
We have analyzed your reported issue and we are able to reproduce the reported issue in 13.1 versions. But now we have fixed the reported issue in our upcoming volume release versions. It will be available in our upcoming 2015 Volume 2 release.
And also a support incident to track the status of this issue has been created under your account. Please log on to our support website to check for further updates.
Praveenkumar
- 7 Replies
- 2 Participants
-
MW Mark Wise
- Jun 18, 2015 12:13 AM UTC
- Jun 23, 2015 08:39 AM UTC