Path Line
val dist = listOf(100, 90, 80, 70, 60, 50, 40)
val temp = listOf(-45.5, -44.4, -40.0, -43.2, -41.5, -35.5, -39.9)
plot {
layout {
title = "Performance Dependency on Temperature"
subtitle = "Analysis of Material Performance Decline at Extremely Low Temperatures"
yAxisLabel = "Performance Measure"
size = 600 to 550
}
path {
y(dist)
x(temp) {
axis.name = "Temperature (°C)"
}
color = Color.BLUE
type = LineType.LONGDASH
}
}
Last modified: 22 November 2023