Hi!
I have linechart and data from SQL.
Y values are datetime, between date1 and date2.
This working ok.
Now i wan’t insert rangebar below linechart and both have same y axis format.
After that i wan’t insert manually start and end value to rangebar.
data: [{
type: "line",
name: line1,
color: "#4F81BC",
showInLegend: true,
axisYIndex: 0,
dataPoints: result1_1
}
and rangebar:
data: [{
type: "rangeBar",
showInLegend: true,
legendText: "",
dataPoints: [
{ x: 10, y:[ragedate1, ragedate2], label: "rangebar1" },
]
Question: how i possible to get y format from SQL received “result1_1” value and insert it to rangebar?
Thanks