After updating to 3.0.0, I encountered the following error:
Cannot access class 'jetbrains.datalore.vis.svgToString.SvgToString'. Check your module classpath for missing or conflicting dependencies
After reading the dev docs, I added this dependency:
implementation("org.jetbrains.lets-plot:lets-plot-jfx:2.0.3")
This did not work due the following error:
Could not find org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.2.
Then I added this dependency:
implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.3")
And everything worked again.