I don't really want to sort by row or column title, but actually have the data sorted by the value (the measure). So to click the column header and have all rows in the order of the row values for the selected column. For multiple row dimensions, the sorting would first have to apply to the highest dimension (S, W, W/AT) and than further down the nested dimensions.
A code behind solution would be fine as well.


<div class="k-form-field">
<label for="dosFrom">@Label From</label>
<TelerikDatePicker
Id="@($"{Id}-dosFrom")"
@bind-Value="@DateTesting"
Format="MM/dd/yyyy"
Class="@($"{Id}-dosFrom calender-picker")">
<DatePickerFormatPlaceholder Year="YYYY" Month="MM" Day="DD" />
</TelerikDatePicker>
</div>
{{ @DateTesting }}
<TelerikButton
ButtonType="Telerik.Blazor.ButtonType.Reset"
OnClick="() => ClearDate()">
Clear
</TelerikButton>public DateTime? DateTesting { get; set; }
private void ClearDate()
{
DateTesting = null;
}For my numeric text box, the up/down arrows do not work in a form. I did a copy/paste from your example here:
https://www.telerik.com/blazor-ui/documentation/components/numerictextbox/overview
<TelerikForm Model="@Account"
OnValidSubmit="@OnSave"
OnInvalidSubmit="@OnInvalidSubmit"
Class="gsi-margin-10">
<FormValidation>
<DataAnnotationsValidator />
</FormValidation>
<FormItems>
...
<FormItem Field="@nameof(Account.theValue)">
<Template>
<LabelFor Model="@Account"
DisplayName="Text Value" />
<TelerikNumericTextBox @bind-Value="@Account.theValue"
Format="C"
Max="5m" Min="-5m"
Step="0.33m" />
</Template>
</FormItem>
</FormItems> [NotMapped]
public decimal theValue { get; set; } = 1.234m;<TelerikWindow Visible="@ShowEditPopup"
Modal="true"
Draggable="true"
Resizable="false"
MaxWidth="350px">
<WindowTitle>Edit Method</WindowTitle>
<WindowContent>
<div>
<label>Description:</label>
<TelerikTextBox @bind-Value="@EditingMethod.Description" />
</div>
<div>
<label>Is Run:</label>
<TelerikCheckBox @bind-Value="@EditingMethod.IsRun" />
</div>
<div>
<label>Run Frequency Minutes:</label><br />
<small>4 Hours: 240, 12 Hours: 720, 24 Hours: 1440</small>
<TelerikNumericTextBox @bind-Value="@EditingMethod.RunFrequencyMinutes"
Min="5"
Max="1440"
Step="5"
Decimals="0" />
</div>
<div>
<TelerikButton OnClick="OnSavePopup">Save</TelerikButton>
<TelerikButton OnClick="OnCancelPopup">Cancel</TelerikButton>
</div>
</WindowContent>
</TelerikWindow>If my data for a Line Chart has only point set, the chart will place the single points in the center of the chart. I'd prefer to see single point on the Left of the chart.
I'd like to see the data point (1st rate, 2nd rate, EIR Fee, Handling Fee) for year 2023 be left aligned in the chart, not centered.
Searched the documentation and can't find where I might be able to accomplish this?
Rob.

When using "Placeholder" prop in MaskedTextBox resulting html element has both attributes - placeholder and aria-placeholder.
Some a11y testing tools (SortSite) consider that a violation because it creates ambiguity.
Is there work around ? Textbox control for example doesn't do that.
Here is the sample code to replicate the issue - https://blazorrepl.telerik.com/cquvvSvB57YqxQRz33

My project is a windows service that hosts a blazor web site and api. When deployed using an MSI, Telerik says it is not licensed. What must be done with the license file to ensure it is registered?
int portNumber =
builder.Configuration.GetValue<int>(
"Kestrel:Startup:Port");
builder.Host.UseWindowsService();
builder.WebHost.UseKestrel(options =>
{
options.Listen(IPAddress.Loopback, portNumber);
});combobox issue in blazor