Just downloaded 2024 R4 and tested my project. Not sure if it’s just me, but there are a lot of things that aren’t working properly. Sluggish, some pages don’t open properly (just a blank page), some methods don’t seem to be called, and some buttons seem to be unresponsive. I don’t think I can move to R4 just yet as it would take a ton of testing each individual method and button code
One thing I wanted to check on is the doughnut chart (pie also didn’t work. Didn’t check the others other than the line/bar chart from the examples, which did work). Simply stated, nothing is displayed with the code below from the docs in the chart’s Opening. All settings match that of the example chart project, except I selected Doughnut as the chart type
Var sales() As Double = Array(345890.0, 421934, 456908, 567987)
Var colors() As Color = Array(Color.Red, Color.Green, Color.Yellow, Color.Blue)
Var ds As New ChartCircularDataset("Sales", sales, Colors)
Me.AddDataset(ds)
Me.AddLabels("Q1", "Q2", "Q3", "Q4")
7 posts - 3 participants