2021-01-12 12:52:22 +03:00
|
|
|
package hep.dataforge.vision.examples
|
|
|
|
|
2021-02-16 14:49:15 +03:00
|
|
|
import hep.dataforge.misc.DFExperimental
|
2021-01-12 12:52:22 +03:00
|
|
|
import hep.dataforge.vision.VisionForge
|
|
|
|
import hep.dataforge.vision.VisionManager
|
2021-02-24 13:42:55 +03:00
|
|
|
import hep.dataforge.vision.html.ResourceLocation
|
2021-01-12 12:52:22 +03:00
|
|
|
import hep.dataforge.vision.html.fragment
|
|
|
|
import hep.dataforge.vision.plotly.plotly
|
|
|
|
import hep.dataforge.vision.plotly.withPlotly
|
|
|
|
import kscience.plotly.scatter
|
|
|
|
|
|
|
|
@DFExperimental
|
|
|
|
fun main() {
|
|
|
|
val fragment = VisionManager.fragment {
|
|
|
|
vision {
|
|
|
|
plotly {
|
|
|
|
scatter {
|
|
|
|
x(1,2,3)
|
|
|
|
y(5,8,7)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-24 13:42:55 +03:00
|
|
|
VisionForge.withPlotly().makeVisionFile(fragment, resourceLocation = ResourceLocation.SYSTEM)
|
2021-01-12 12:52:22 +03:00
|
|
|
}
|