views = [
new deck.OrthographicView({
id: 'matrix',
x: label_width + 'px',
y: label_width + 'px',
width: matrix_width + 'px',
height: matrix_height + 'px',
controller: {scrollZoom: true, inertia: false, zoomAxis: 'all'},
}),
new deck.OrthographicView({
id: 'rows',
x: '0px',
y: label_width + 'px',
width: '100px',
height: matrix_height + 'px',
controller: {scrollZoom: true, inertia: false, zoomAxis: 'Y'},
}),
new deck.OrthographicView({
id: 'cols',
x: label_width + 'px',
y: '0px',
width: matrix_width + 'px',
height: label_width + 'px',
controller: {scrollZoom: true, inertia: false, zoomAxis: 'X'},
}),
]