Carga
This commit is contained in:
2025-04-17 00:35:33 -06:00
parent 4977462629
commit 67fc72aed5
1333 changed files with 1077639 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/* *
*
* Copyright (c) 2019-2021 Highsoft AS
*
* Boost module: stripped-down renderer for higher performance
*
* License: highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
/* *
*
* Constants
*
* */
var WGLDrawMode = {
'area': 'LINES',
'arearange': 'LINES',
'areaspline': 'LINES',
'column': 'LINES',
'columnrange': 'LINES',
'bar': 'LINES',
'line': 'LINE_STRIP',
'scatter': 'POINTS',
'heatmap': 'TRIANGLES',
'treemap': 'TRIANGLES',
'bubble': 'POINTS'
};
/* *
*
* Default Export
*
* */
export default WGLDrawMode;