Kanban card sort order in column

How can I specify the order for cards to be displayed in a Kanban column?

Given the following sample data, how would I specify the order, from top to bottom on this column?

var task_set = [
	{ id:1, status:"new", text:"Task 1", tags:"webix,docs" },
	{ id:2, status:"new", text:"Task 2", tags:"webix" },
	{ id:3, status:"new", text:"Task 3", tags:"webix" },
	{ id:4, status:"new", text:"Task 4", tags:"webix" },
	{ id:5, status:"new", text:"Task 5", tags:"webix,docs" }
];

Hi @robert ,

Kanban allows specifying the initial sorting via data scheme for the entire component (will affect all columns): https://snippet.webix.com/xauvkbb7

For a single list, sorting may be called via API after the data is loaded: https://snippet.webix.com/tjeztoyq

Thanks @Listopad this was very helpful, and I thing we have it working properly now.