Blazor WebAssembly Chart: range not set correctly

Hi,

I'm trying to create a chart with a small DateTime range (e.g. ten minutes) with intervals in minutes.

Here's the control code:
<SfChart @ref="LastPriceArbitrageChart">      
    <ChartPrimaryXAxis Title="Time"
                       ValueType="Syncfusion.Blazor.Charts.ValueType.DateTime"
                       IntervalType="IntervalType.Minutes"
                       Minimum="DateTime.UtcNow.AddMinutes(-5)"
                       Maximum="DateTime.UtcNow.AddMinutes(5)"
                       RangePadding="ChartRangePadding.None">
    </ChartPrimaryXAxis>
 
    <ChartPrimaryYAxis Title="Arbitrage %"
                       Minimum="0.5"
                       Maximum="2.0">
    </ChartPrimaryYAxis>
 
    <ChartSeriesCollection>
 
        <ChartSeries DataSource="@TestSeries"
                     XName="Item1" YName="Item2"            
                     Type="ChartSeriesType.Line">
        </ChartSeries>
 
    </ChartSeriesCollection>
 
    <ChartTooltipSettings Enable="false"></ChartTooltipSettings>
    <ChartCrosshairSettings Enable="false"></ChartCrosshairSettings>
    <ChartZoomSettings EnableSelectionZooming="false"></ChartZoomSettings>
</SfChart>

The X-axis values are supplied as DateTimes.
See attachment for what gets rendered - the range is ignored.
What am i doing wrong?
Thanks,
Richard

Attachment: Screenshot_20200628_at_13.07.41.png_17ebf7f.zip

3 Replies 1 reply marked as answer

DG Durga Gopalakrishnan Syncfusion Team June 29, 2020 01:06 PM UTC

Hi Richard, 

Greetings from Syncfusion. 

We have validated your reported scenario. We have considered this as a bug and logged a defect report. This fix will be available in our upcoming weekly patch release which is scheduled to be rolled out on 7th July, 2020. We appreciate your patience until then. You can keep track of the bug from the feedback portal below.  
  
  
The provided feedback link is private, and you need to login to view this feedback. 
  
If you have any more specification/precise replication procedure or a scenario to be tested, you can add it as a comment in the portal. 
 
Regards, 
Durga G 



DG Durga Gopalakrishnan Syncfusion Team July 7, 2020 10:28 AM UTC

Hi Richard, 

Due to volume 2 main release, we have postponed this patch release to next week. We will include the fix in our upcoming weekly patch release which is scheduled to be rolled out on 14th July, 2020. We appreciate your patience until then. 

Regards, 
Durga G 



DG Durga Gopalakrishnan Syncfusion Team July 14, 2020 03:53 PM UTC

Hi Richard, 

We are glad to announce that our v18.2.45 patch release is rolled out, we have added the fix for reported issue. You can use the latest(18.2.45) Syncfusion.EJ2.Blazor NuGet package version to get rid of the reported issue.  
 
We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance. 

Regards, 
Durga G 


Marked as answer
Loader.
Up arrow icon