Is it possible to generate datatable with given JSON?

Hello webix Team,
I have following json:

{
	"total_count":10530,
	"pageLimit":5,
	"isSuccess":true,
	"pos":0,
	"data":[
		[
			{
				"value":"0.1"
			},
			{
				
				"value":"0.2"
			},
			{
				
				"value":"0.3"
			},
		],
		[
			{
				"value":"1.1"
			},
			{
				"value":"1.2"
			},
			{
				"value":"1.3"
			},
		]
	]
}

data in json object contains json array,I want to add number of columns equal to the size of data object in json and that particular column contains number of rows equal to the element given in each array in Data object.

Datatable will look like:

value             ~            value
0.1                ~           1.1
0.2                ~           1.2
0.3                ~           1.3

with pagination.
Is it possible to generate datatable with given JSON?

you can create custom DataDriver and use it for loading data.
check this
https://snippet.webix.com/kfxgjx2v

Thanks @integral This is what i want