Is there currently range selection functionality like asp.net core?
https://demos.telerik.com/aspnet-core/chart-api/selection
Here is my situation :
I have a grid (grid 1) where a user selects a row and then information of that selected item is displayed in a different group of controls. In particular, the selected item has an observable collections that bound to a second grid (grid 2). My issue is that if I select an item from the grid 1 and the item's collection displayed in grid 2 has multiple pages then I click on a page greater than 1 (for example page 3). Then I select a new item on grid 1 and all of its items in the respective collection bound to grid 2 are bound to the grid but I see nothing displayed in the grid if this collection doesn't have enough items to appear on the page from the previous selected item (ie page 3 in this case). I do see the paging control and if I click on the "1" for page one then I see everything in the collection correctly. Is this by design? Am I supposed to reset the page on the grid manually? Is this because it is an observable collection?
Greetings!
I am unable to install the Telerik Blazor UI in both new and existing projects ..
New project:
Error: Expecting an option, got instead: Files\dotnet\sdk\NuGetFallbackFolder\system.xml.xpath\4.3.0\lib\netstandard1.3\System.Xml.XPath.dll -a C:\Program TelerikExample.Client ...
Error: The command "dotnet "C:\Users\Admin\.nuget\packages\microsoft.aspnetcore.blazor.mono\3.0.0- ....
Existing (running with EF Core, AutoMapper, ...) project:
Error after adding the Telerik.UI.for.Blazor.Trial: NU1107 Version conflict detected for Microsoft.CodeAnalysis.CSharp.Workspaces. Install/reference Microsoft.CodeAnalysis.CSharp.Workspaces 3.3.0 directly to project Weca.Server to resolve this issue.
Error: MSB3073 The command "dotnet "C:\Users\Admin\.nuget\packages\microsoft.aspnetcore.blazor.mono\3.0.0-preview9.19456.1\build\netstandard1.0\../../tools/illink/illink.dll" -l none --disable-opt unreachablebodies ...
What can i do? I'm unable to solve the version conflict (either the manual added version of CShap.Workspaces and the NuGet installed version doesn't work)
I'm trying to check which UI framework to pick, so any help is MUCH appreciated!
Niklas
Hi, I need to add tooltips to charts. Is this feature comming soon? p.e i have a chart that shows filename usage but the same filename can be used in multiple folders and there is no way to differentiate in this case i would like to add a tooltip to show the full path to the file when hover on the filename not just the name like in the attached screenshot.
This exert from an email you all sent today mentions 25 controls.
Are they saying there will be 25 controls soon?
I am seeing 16 right now, are they saying 9 more are ready? What are those 9 that are coming?
With this release, we are also announcing the market-first Telerik UI for Blazor with 25+ native components, support for Angular 8 and latest .NET Core 3.0 (RC).
Hi,
Using: UI for Blazor 2.0 with .NET Core 3 RC1.
We're trying to get data to show on our chart. However it seems this is not working. We're binding a single series like this:
<TelerikChart>
<ChartSeriesItems>
<ChartSeries Type="ChartSeriesType.Line" Name="Values" Data="@_dataPoints" Field="@nameof(DataPoint.Value)" CategoryField="@nameof(DataPoint.Category)" />
</ChartSeriesItems>
<ChartLegend Position="Telerik.Blazor.ChartLegendPosition.Right" />
</TelerikChart>
Our _dataPoints variable is set in OnInitializedAsync. We've tried invoking StateHasChanged after the variable has been set, but this does not seem to help.
The "category" property on the DataPoint model was a DateTime but we changed this to string to check if that would work, but this also doesn't fix it.
private IEnumerable<DataPoint> _dataPoints = new List<DataPoint>();
protected override async Task OnInitializedAsync()
{
_dataPoints = await CalculateDataPoints().ConfigureAwait(false);
//await InvokeAsync(() => StateHasChanged()).ConfigureAwait(false);
}
Are we missing something?
Thank you in advance.