This layout is used by the following built-in charts/reports and examples





c3.js Example
c3.generate({
	data: chartData,
	axis: {
		x: {
			type: 'timeseries',
			label: {
				text: 'Months',
				position: 'outer-left'
			},
			tick: {
				format: '%d.%m.%y',
				culling: {
					max: 25
				},
				fit: true,
				multiline: false
			}
		},
		y: {
			label: 'Tickets'
		}
	}
})

// chartData - this variable contains the aggregated data for display and is generated by the script


If you still have questions, feel free to refer to our support team.