The current suggestions are IMHO quite complicated and require a lot of client-side code.
I would like to have a way to display the total of the series in the center.
The content should change depending on the selected categories.
Maybe using a template with access to the values.
The size of the content should scaled to optimally fill the empty center.
Kind regards Erwin
You can see the legend on the right hand side is showing every
instance of the same type. Is there a away that it can only show one
instance of each and toggle all types of that type. i.e. it would only
show Cheese, Bread, Jam
Clicking cheese would unselect Cheese in both groups.
I also cannot find a way to display any way of differentiating the two groups
Is there a way to add a label to show this? (Like I have drawn one and two on the series)
Feature request for adding a custom class to the label text for the items in the Telerik UI Chart.
The desired result is the labels to receive and apply CSS styles.
By design, the axisDefaults configuration of the Kendo UI for jQuery Chart allows you to set the rotation of the labels to "auto":
axisDefaults: {
...
labels: {
rotation: "auto"
},
}
//OR
axisDefaults: {
...
labels: {
rotation: {
angle: "auto"
}
},
}
At this stage, when using Telerik UI for ASP.NET Core Chart, the Rotation() method does not accept a string value. Also, the Angle() option accepts only a double value. Is it possible to implement an additional overload that allows setting the labels rotation to "auto"?
For example:
.AxisDefaults(ad => ad.Labels(l => l.Rotation("auto")))
Or
.AxisDefaults(ad => ad.Labels(l => l.Rotation(r => r.Angle("auto"))))
I need the Chart series to be able to use a value of the Model to get their names instead of it always being a manually configured string.
At this stage, the BaseUnit() method of the CategoryAxis configuration does not provide "Milliseconds" option. Is it possible to include it?
The PlotArea option of the DonutChart does not include the Height option that is available in jQuery:
Please reference the support ticket number:
1527560
The radar chart needs support for 2 CategoryAxis similar to the line and column chart. In the ticket above, I have shared a screenshot of how the radar chart would look like. Due to confidential reasons, I am not sharing it on the public Feedback portal.
As mentioned in this feature request for area-range chart series: "having area 'scatter' support, such as 'scatterArea', and 'scatterAreaRange', like the existing 'scatterLine', is also desirable".
Please see this forum post for details.
Hello,
Using Donut Chart with provided option for zooming and panning doesn't change appearance.
@(Html.Kendo().Chart()
.Name("tagChart")
.ChartArea(chartArea => chartArea
.Background("transparent").Height(1200).Width(1200))
.Title(title => title
.Text("Dicom Tags")
.Position(ChartTitlePosition.Bottom)
)
.Legend(legend => legend
.Visible(false)
)
.SeriesDefaults(series =>
series.Donut().StartAngle(15)
).Zoomable(z => z.Mousewheel(true))
.Pannable(true)
Is any way to get it working?
Thanks
For computations in a custom aggregate function it would be very helpful to have the start and end DateTimes for the current category at hand. Right now the category parameter just provides a single DateTime which is the start DateTime of the category. The end DateTime can only be calculated with a workaround provided by Tsvetina
(see this ticket: https://www.telerik.com/account/support-tickets/view-ticket/1386149)