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
Given an empty time series instance
const emptyTimeSeries = new TimeSeries({ name: 'Empty time series', columns: [ 'time', 'data' ], points: [] });
I would expect to get the list of columns
// Expected [ 'data' ] // Actual [] emptyTimeSeries.columns();
and would expect to get the series serialised
// Expected "{"name":"Empty time series","utc":true,"columns":["time","data"],"points":[]}" // Actual undefined emptyTimeSeries.toString();
The text was updated successfully, but these errors were encountered:
I am having the same issue. When this will be fixed?
Sorry, something went wrong.
No branches or pull requests
Given an empty time series instance
I would expect to get the list of columns
and would expect to get the series serialised
The text was updated successfully, but these errors were encountered: