You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 18, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/tags/object/TimeSeries.js
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@ import { AnnotationMixin } from '../../mixins/AnnotationMixin';
66
66
* @param {string} [durationDisplayFormat] Format used to display temporal duration value for brush range. If the temporal column is a date, use strftime to format it. If it's a number, use [d3 number](https://github.com/d3/d3-format#locale_format) formatting.
67
67
* @param {string} [sep=,] Separator for your CSV file.
68
68
* @param {string} [overviewChannels] Comma-separated list of channel names or indexes displayed in overview.
69
+
* @param {string} [ylim] Comma-separated list of y axis limits.
69
70
* @param {string} [overviewWidth=25%] Default width of overview window in percents
70
71
* @param {boolean} [fixedScale=false] Whether to scale y-axis to the maximum to fit all the values. If false, current view scales to fit only the displayed values.
71
72
*/
@@ -80,6 +81,7 @@ const TagAttrs = types.model({
80
81
durationdisplayformat: '.0f',
81
82
overviewchannels: '',// comma-separated list of channels to show
82
83
overviewwidth: '25%',
84
+
ylim: '-5,5',// comma-separated list of y axis limits
0 commit comments