This component shows timeline-shaped data such like social networking services. It only presents data - no interactive.

{
  "type":"timeline",
  "hour24":true,
  "events":[
    {
      "ts":1601537400000,
      "value":"Read newspaper",
      "color":"white"
    },
    {
      "ts":1601544600000,
      "value":"Conference call",
      "color":"green"
    },
    {
      "ts":1601551800000,
      "value":"Meating",
      "color":"blue"
    }
  ]
}
PropertyTypeExampleDescriptionRequired
typestringtimelineType of component. Use timelinetrue
hour24booleantrueOption for setting how display time of each event. It will be displayed as "18:40" such like 24-hour format when true. Otherwise, "06:40 PM" will be displayed.false
eventslist of object[
{
"ts":1601537400000,
"value":"Read newspaper",
"color":"white"
},
{
"ts":1601544600000,
"value":"Conference call",
"color":"green"
},
{
"ts":1601551800000,
"value":"Meating",
"color":"blue"
}
]
List of events. Note that events reordered automatically by it's ts value.true
events[i].tsnumber1601537400000Epoch milliseconds of time event occurred. Note that it does not depends on time zone, it presents only the "moment" of event so consideration of time zone is part of server-side.true
events[i].valuestringSent package to customerContent of event.true
events[i].colorstringblueColor of circle at the front of event item. Default is white. Available values:

white
blue
cobalt
orange
red
green
false