20 lines
284 B
JavaScript
20 lines
284 B
JavaScript
var LEGENDS_METADATA = {
|
|
bubble: {
|
|
legendType: 'size'
|
|
},
|
|
category: {
|
|
legendType: 'color'
|
|
},
|
|
choropleth: {
|
|
legendType: 'color'
|
|
},
|
|
custom: {
|
|
legendType: 'color'
|
|
},
|
|
custom_choropleth: {
|
|
legendType: 'color'
|
|
}
|
|
};
|
|
|
|
module.exports = LEGENDS_METADATA;
|