charts icon indicating copy to clipboard operation
charts copied to clipboard

java.lang.NoSuchMethodError: No interface method startRestartGroup(ILjava/lang/String;)Landroidx/compose/runtime/Composer; in class Landroidx/compose/runtime/Composer;

Open ociler opened this issue 3 years ago • 0 comments

I am having this error when I want to display a Bar Chart. Here it is my code using this repository:

@Composable fun MyBarChartParent() { BarChart( barChartData = BarChartData( bars = listOf(BarChartData.Bar(label = "Bar Label", value = 100f, color = Color.Red)) ), // Optional properties. modifier = Modifier.fillMaxSize(), animation = simpleChartAnimation(), barDrawer = SimpleBarDrawer() ) }

I have just used the sample BarChart code of the ReadME file

ociler avatar Dec 13 '21 19:12 ociler