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
Currently attempting to support the start property for heatmaps (heatmaps.go).
start
heatmaps.go
What my implementation looks like:
// interface func (chartArgs *HeatmapArgs) WithStartDate(date time.Time) *HeatmapArgs { chartArgs.Start = date return chartArgs
// in main fn charts.NewHeatmapChart("#chart", data). WithStartDate(time.Now()). // should work, but throws error Render() }
JavaScript Console Error:
Error: runtime error: cannot internalize time.Time from undefined, must be Date
It seems others have had this issue (one issue was resolved in 2015, but it seems to have re-emerged in 2016).
Gonna try to think of a workaround for now.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently attempting to support the
start
property for heatmaps (heatmaps.go
).What my implementation looks like:
JavaScript Console Error:
It seems others have had this issue (one issue was resolved in 2015, but it seems to have re-emerged in 2016).
Gonna try to think of a workaround for now.
The text was updated successfully, but these errors were encountered: