Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Having a column with a date/time/datetime you can use it it either as ordered group of periods or continuous timeline.

Code Block
languagejs
titleExample of using periods scale
{
	...
	"x": "created"
	...
	"dimensions": {
		"created": {
			"type": "order",
			"scale": "period"
		}
	}
}


Code Block
languagejs
titleExample of using continous timeline scale
{
	...
	"x": "created"
	...
	"dimensions": {
		"created": {
			"type": "measure",
			"scale": "time"
		}
	}
}