We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spike on nesting / namespacing config parameters and breaking apart different config update methods to match.
Refer to comment #45 (comment), and some possible API examples from @biovisualize:
mapd3.Chart(container) .setBarChartConfig({...}) .setAxesConfig({...})
Similar to event pattern:
chart1.getEvents() .onBrush("brushClear", callback)
const axis = mapd3.axis(container) .setConfig({}) .onBrush(callback) // ... const chart = mapd3.composeChart(axis, bar, tooltip)
mapd3.Chart(container) .setConfig({ bar: {}, axes: {} })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Spike on nesting / namespacing config parameters and breaking apart different config update methods to match.
Refer to comment #45 (comment), and some possible API examples from @biovisualize:
Config method for each sub-component
Similar to event pattern:
Let the user compose the chart
Simple, monolithic
The text was updated successfully, but these errors were encountered: