Hi,
I have chart that is created dynamically. How to refresh all of the dynamically created charts.
@foreach (var item in popData)
{
<TelerikChart Width="100%" Height="600px" @ref="PopChart">
<ChartSeriesItems>
<ChartSeries Type="ChartSeriesType.Bar" Data="@item.chartData" Color="@item.borderColor"
Field="@nameof(Classes.PopulationChartClass.count)" CategoryField="@nameof(Classes.PopulationChartClass.ageGroup)">
@* <ChartSeriesLabels Template="#=value# " Visible="@LabelVisable"></ChartSeriesLabels> *@
<ChartSeriesTooltip Visible="true">
<Template>
</Template>
</ChartSeriesTooltip>
</ChartSeries>
</ChartSeriesItems>
<ChartValueAxes>
<ChartValueAxis Color="black">
<ChartValueAxisTitle Text="Population" />
<ChartValueAxisLabels Format="{0:N0}"></ChartValueAxisLabels>
</ChartValueAxis>
</ChartValueAxes>
<ChartCategoryAxes>
<ChartCategoryAxis>
<ChartCategoryAxisLabels>
<ChartCategoryAxisLabelsRotation Angle="315" />
</ChartCategoryAxisLabels>
</ChartCategoryAxis>
</ChartCategoryAxes>
</TelerikChart>
}
In Winforms we use the SqlGeospatialDataReader to load polygons and multipolygons that are stored in SQL geography fields into the RadMap control. Is there something similar for the Blazor Map control? If no, would you recommend loading these shapes into the Blazor version of the map control?
Hello, with TelerikScheduler, I want to be able to highlight certain hours and apply a custom logic.
For example in the attached file picture, can it function like Outlook when it is in Schedule View? I want to be able to highlight like in the picture, 3:30pm to 4:30pm, and then do something in the background. Does TelerikScheduler allow something like this?
Whenever I add a TelerkiCheckBox to a page/component the testers complain that they can't see the border of the checkbox so I'm constantly adding the below css to my razor files:
<style>
.k-checkbox {
/* Make the border a little darker than the default */
border-color: rgba(0, 0, 0, 0.4);
}
</style>
If I add this to my app.css it doesn't get applied.
Is there any way to apply this at a global level?
Hi, my goal is validate a form and focus telerik widget with validation errors.
Now i can find the element search for class "k-invalid" but how to get the widget reference so i can call the FocusAsync() method?
Thanks
I am trying to convert implement the TelerikTabStrip and was largly successful however I have a component that contains conditional logic that adds between 0 and 2 additional tabs to the parent components tabStrip. Unfortuately these tabs are not rendering correctly. I was able to replicate a minimum reproducable example in the blazor REPL environment using the following code. Are you able to advise how I can add tabs to a parents tabstrip, my two rendering issues are:
Main.razor
<TelerikTabStrip PersistTabContent="true">
<TabStripTab Title="tab1">
<p>tab1 content</p>
</TabStripTab>
<TabStripTab Title="tab2">
<p>tab2 content</p>
</TabStripTab>
<TabStripTab Title="tab3">
<p>tab3 content</p>
</TabStripTab>
<SubComponent />
</TelerikTabStrip>
SubComponent.razor
<TabStripTab Title="tab4">
<p>tab4 content</p>
</TabStripTab>
<TabStripTab Title="tab5">
<p>tab5 content</p>
</TabStripTab>
Screenshots:
initial render:
Clicking on tab 1, 2 or 3 works as expected:
clicking on 4 or 5 shows no content:
Then clicking back to 1, 2 or 3 shows 4 and/or 5 as still selected: