renderToptipCol(text: any) {
const texts = text
let textof = null
if (texts !== null && texts !== undefined) {
if (texts.length > 20) {
textof = texts.substring(20) + '...'
} else {
textof = texts
}
}
return <a-tooltip title={text}>{textof} </a-tooltip>
}