UNPKG

@material-vega/core

Version:

Material Design stylized themes for Vega Lite visualizations

23 lines (22 loc) 534 B
/** * Create config common to scatterplot chart types */ export var createScatterplotConfig = function (options) { return { axis: { // Horizontal and vertical grid lines grid: true }, axisY: { // Default the Y axis to left orientation orient: 'left', labelAlign: 'right', // Include domain line domain: true }, point: { // Default to solid shapes filled: true } }; };