Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@avinlab/d3-timeseries-multi-chart
Advanced tools
Chart for multi timeseries datastreams.
[ >> Online demo << ]
# Yarn
yarn add @avinlab/d3-timeseries-multi-chart
# NPM
npm install --save @avinlab/d3-timeseries-multi-chart
import TimeseriesMultiChart from '@avinlab/d3-timeseries-multi-chart';
const chart = new TimeseriesMultiChart({
target: '#chartContainer',
chartDuration: 3600 * 1000,
width: 800,
height: 600,
showTimeAxis: false,
});
chart.render([
{
label: 'Data 1',
color: '#F5498B',
data: [
[new Date('2019-01-05 13:00:00'), 1.5],
[new Date('2019-01-05 13:01:00'), 1.2],
[new Date('2019-01-05 13:02:00'), 1.0],
[new Date('2019-01-05 13:03:00'), 0.5],
],
showAxis: true,
strokeWidth: 2,
},
{
label: 'Data 2',
color: '#43BF4D',
data: [
[new Date('2019-01-05 13:00:00'), 3.2],
[new Date('2019-01-05 13:01:00'), 1.2],
[new Date('2019-01-05 13:02:00'), 5.2],
[new Date('2019-01-05 13:03:00'), 1.2],
],
showAxis: true,
showDots: true,
},
]);
target
(String | Element) - target element to mount chart svg (default: #chart
).renderMode
(String) - render mode for dataLines drawing (canvas
| svg
) (default: canvas
).width
(Number) - width of chart (default: 500
).height
(Number) - height of chart (default: 300
).chartDuration
(Number) - default chart duration (default: 3600000
(1hour)).showTimeAxis
(Boolean) - show time axis (default: true
).timeAxisHeight
(Number) - time axis height (default: 20
).tipTimeWidth
(Number) - tip time width (default: 125
).tipTimeFormat
(String) - tip time dateTime format string (default: %Y-%m-%d %H:%M:%S
).commonDataAxis
(Boolean) - common axis for data lines (default: false
).commonDataAxisWidth
(Number) - width of common data axis (default: 30
).autoScale
(Boolean) - auto scale data points of visible part.chartPaddingFactor
(Number) - data lines padding factor : 1/N of chart height (less is more) (default: 30
).draggable
(Boolean) - allow to drag (default: true
).zoomable
(Boolean) - allow to zoom (default: true
).showMouseTip
(Boolean) - enable on mouseover values display (default: ).minZoomTime
(Number) - min limit for zooming (-1 is disabled) (default: -1
).maxZoomTime
(Number) - max limit for zooming (-1 is disabled) (default: -1
).dataAxisTickHeight
(Number) - tick of data axis height (default: 20
).render
- render data on chart. Params: (DataStreamsArray
- required first time)update
- render
method alias.setChartDuration
- update chart duration (change time zoom level). Params: (newChartDuration)setLastChartTime
- update last chart time (change chart position). Params: (newLastChartTime)on
- add event handler.off
- remove event handler.data
(Array) Required - array of data values. Array item structure: [date: DateTime, value: Number].color
(String) - color string for data line.colorGradient
(Array) - colors for data line gradient fill.label
(String) - dataStream human name.showAxis
(Boolean) - show Y axis for current dataStream (default: true
).strokeWidth
(Number) - stroke width of data line (default: 1
).showDots
(Boolean) - show data points on data line (default: false
).dotsRadius
(Number) - data points radius (default: x2 of strokeWidth).type
(String) - type of data line (line
| area
| bar
) (default: line
).areaFillOpacity
(Number) - opacity factor for color filling of area data line type.curve
(String) - data line curve type (linear
| stepAfter
| stepBefore
| monotoneX
) (default: linear
).scaleRange
(array) - Scale result range in percents of chart height [min, max]
. For Example [0, 50]
- draw
data line in bottom part of chart and [50, 100] in top one.scaleDomain
(Array) - Custom scale domain [min, max]
.scaleVisible
(Boolean) - Auto scale data line in visible time period.beforeChartDuration
- chart duration before zoomafterChartDuration
- chart duration after zoomscaleFactor
- zoom scale factorstartX
- mouse x
value on start draggingendX
- mouse y
value on finish draggingbeforeLastChartTime
- last chart time before dragafterLastChartTime
- last chart time after dragdiff
- dragging diff in pixelsMIT © avin
FAQs
Chart for multi timeseries datastreams
We found that @avinlab/d3-timeseries-multi-chart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.