Skip to main content
kondia0001
November 12, 2024
Question

Time stamp format (HH:MM:SS) in Line chart

  • November 12, 2024
  • 2 replies
  • 0 views

a!localVariables(
local!value: 2.50,
{
a!lineChartField(
label: "Line Chart",
labelPosition: "ABOVE",
categories: "Data",
series: {
a!chartSeries(label: "Data", data: local!value)
},
showLegend: true,
showTooltips: true,
allowImageDownload: true,
colorScheme: "RAINFOREST",
height: "MEDIUM",
xAxisStyle: "STANDARD",
yAxisStyle: "STANDARD"
)
}
)



Is it possible to display graph data (2.5) to time stamp format(00:02:30) in the line chart (please find the attached image I have circled the image where I need to display in time stamp format).
Please provide me the suggestions.

2 replies

stefanhelzle0001
November 12, 2024

I don't think this will work as the Y-axis is a number, but not time.

kondia0001
November 12, 2024

Thank you!