Hi,
I am trying to run this simple code in Android Studio emulator (API 29) and it does not show any markers on the line. Line is ok, but there are no markers. Is there any problem with this code?
class Wykres(context: Context): VizContainerView(context)
{
private val Points = listOf(1,2,9,16,25,36,49,64,81,100)
fun updateChart()
{
chart(Points){
size = Size(500.0,220.0)
title = "Wykres"
val index = discrete({indexInData})
val values = quantitative({domain.toDouble()})
line(index, values)
{
curve = MarkCurves.Curved
size = constant(30.0)
marker = constant(Symbols.Circle)
showMarkers = true
}
}
}
}