Xamarin Forms RadPieChart is crashing on iOS when all items in datasource has a value of zero.
on Android, it is just displaying empty piechart.
Android.Content.Context _context;
public
MyCalendarDecorator (RadCalendarView calendarView,
float
s) :
base
(calendarView, s)
{
_context = calendarView.Context;
}
public
override
void
RenderLayer (
int
p0, Android.Graphics.Canvas p1)
{
if
(CellsForDecoration.ContainsKey (p0)) {
var cellsForLayer = CellsForDecoration.Get (p0)
as
Java.Util.AbstractList;
if
(cellsForLayer.Size() > 0) {
for
(
int
i = 0; i < cellsForLayer.Size(); i++) {
****Here I want the cell properties (width, VirtualLeft and VirtualTop)
Hi,
I am working on a Xamarin Forms project.
When I place a chart in page's content it is working(like in Telerik examples)
But when I place it inside a StackLayout; chart does not populate in the view.
Is it a bug?
It would be nice if the Xamarin forms controls could be available via nuget and you set a key or something.
All the components in my forms app come from Nuget. Applying the two DLL's for Telerik mean a shared solution library or something as we share out projects in TFS. It's a real pain.
Is it possible to resize the listview to the size of it's content?
I tried using listView.IntrinsicContentSize.Height, but it always returns -1.