-
-
Notifications
You must be signed in to change notification settings - Fork 721
New issue
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
feat: licensed users chart #8844
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Files |
), | ||
...overrideOptions, | ||
}), | ||
() => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replaced spreading with deepmerge. That allows me to pinpoint override properties deep in object tree .
|
||
export const createOptions = ( | ||
theme: Theme, | ||
locationSettings: ILocationSettings, | ||
setTooltip: React.Dispatch<React.SetStateAction<TooltipState | null>>, | ||
isPlaceholder?: boolean, | ||
) => | ||
): ChartOptions<'line'> => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixing type
@@ -27,10 +28,6 @@ export const createOptions = ( | |||
tooltip: { | |||
enabled: false, | |||
position: 'nearest', | |||
interaction: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does not exist for line chart
@@ -46,8 +43,6 @@ export const createOptions = ( | |||
hitRadius: 15, | |||
}, | |||
}, | |||
// cubicInterpolationMode: 'monotone', | |||
tension: 0.1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does not exist for line chart
Currently showing 2 lines, because backend is not sorting the data.