0.6.2 • Published 6 years ago
sparkz v0.6.2
sparkz

Generate SVG sparklines
Install
npm i sparkzimport sparkz from "sparkz";API
sparkz(svg, values, options = {})
svg: This is a<svg>reference that must contain three required attributes (width,height, andstroke-width). These attributes are used to calculate the drawing area.values: You can either provide an array of numbers or an array of objects that respond to.value. If you have a different data structure, seeoptions.fetch.options: This optional argument allows you to further customize the sparkline. The available options are:fetch: Use this function to return the value if you have a different data structure that's not natively supported by sparkz.onmousemove: By setting this callback function, you'll enable the interactive mode (unless you setoptions.interactivetofalse). The callback signature iscallback(event, datapoint), wheredatapointis an object containing the value, x/y coordinates, and the item index.onmouseout: This callback function is called every time the mouse leaves the SVG area. You can use it to hide things like tooltips.spotRadius: Set the spot radius. The default is2.cursorWidth: Set the cursor width. The default is2.interactive: Whentrue, this enables the interactive mode. You don't have to set this option if you're providing aonmousemovecallback.fill: Value to use for thefillattribute on the<path>area and spotcircle.
Usage
This is the minimum working example:
<!-- width, height and stroke-width attributes must be defined on the target SVG -->
<svg class="sparkz" width="100" height="30" stroke-width="3"></svg>
<script>
sparkz(document.querySelector(".sparkz"), [1, 5, 2, 4, 8, 3, 7]);
</script>You can change the colors by either setting the attributes directly to the SVG element or using CSS, like the following:
/* just the line */
.sparkz {
stroke: red;
fill: none;
}
/* line with highlight area */
.sparkz {
stroke: red;
fill: rgba(255, 0, 0, .3);
}
/* change the spot color */
.sparkz--spot {
stroke: blue;
fill: blue;
}
/* change the cursor color */
.sparkz--cursor {
stroke: orange;
}
/* style fill area and line colors using specific class name */
.sparkz--fill {
fill: rgba(255, 0, 0, .3);
}
.sparkz--line {
stroke: red;
}License
Copyright (c) silverwind Copyright (c) 2018 Nando Vieira