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
if your pod like this
import { GaugeOptions, GaugeTimeSerie } from './types'; import { ChartwerkPod } from '@chartwerk/core'; import * as d3 from 'd3'; export class Pod extends ChartwerkPod<GaugeTimeSerie, GaugeOptions> { constructor(el: HTMLElement, _series: GaugeTimeSerie[], options: GaugeOptions) { super(d3, el, _series, options); } renderMetrics(): void { } /* handlers and overloads */ onMouseOver(): void {} onMouseMove(): void {} onMouseOut(): void {} renderSharedCrosshair(): void {} hideSharedCrosshair(): void {} }
you get:
The text was updated successfully, but these errors were encountered:
It came from this chartwerk pod initialisation:
<html> <script type="text/javascript"> var pod = new MyChartwerkPod( document.getElementById('chart'), [{ target: 'test', datapoints: [[3, 20], [4, 25]] }],{} ); pod.render(); </script> </html>
Sorry, something went wrong.
No branches or pull requests
if your pod like this
you get:
The text was updated successfully, but these errors were encountered: