viewof containerEl = {
const containerElement = DOM.element('div');
containerElement.style.position = "relative";
containerElement.style.height = "500px";
const scatterGL = new ScatterGL(containerElement, {
onHover: point => {
mutable point = Object.assign(mutable point, { hover: point });
},
onClick: point => {
mutable point = Object.assign(mutable point, { click: point });
},
renderMode: "POINT",
styles: {
point: {
colorUnselected: 'rgba(120, 120, 120, 0.7)',
colorNoSelection: 'rgba(51, 51, 51, 0.7)',
colorSelected: 'rgba(255, 10, 10, 0.7)',
colorHover: 'rgba(255, 11, 79, 0.7)',
scaleDefault: 1.0,
scaleSelected: 1.2,
scaleHover: 2
}
}
});
return Object.assign(containerElement, { value: scatterGL });
}