-
Notifications
You must be signed in to change notification settings - Fork 832
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
Custom title for grouped tooltip on trackball #2320
Comments
Hi @anna-st-40, Query 1: Tooltip should always display "Month Day HH:MM AM/PM" To achieve your requirement, we suggest using the builder property in TrackballBehavior. Inside the builder, we extracted the x-value from groupingModeInfo.points.first.x and formatted it using DateFormat('MMM d hh:mm a').format(date). We have shared the code snippet, sample and UG documentation for your reference. Code Snippet:
UG Link: https://help.syncfusion.com/flutter/cartesian-charts/trackball-crosshair#trackball-tooltip-template Query 2: Display hours for a smaller range and dates for a larger range To dynamically adjust the x-axis labels based on the selected time range, we suggest using the dateFormat and intervalType properties in the DateTimeCategoryAxis. For shorter time ranges such as 6H, 12H, and 24H, we formatted the x-axis labels using DateFormat('hh:mm a') and updated the intervalType to DateTimeIntervalType.hours, ensuring that only hours and AM/PM are displayed. For longer time ranges such as 3D, 1W, 1M, and 6M, we formatted the x-axis labels using DateFormat('MM/dd/yyyy') and updated the intervalType to DateTimeIntervalType.days, ensuring that only the date is displayed. We have shared the code snippet, sample and UG documentation for your reference. Code Snippet:
UG Links: Output: Please let us know if you need any further assistance. Regards, |
Use case
I have a trackball over a Cartesian chart with tooltipDisplayMode grouping all points. When all the points are grouped, an automatic heading title is added from the x-axis. However, there does not seem to be a way to customize this title.
In my case, I have a DateTimeAxis as my x-axis, and I want my tooltip to always display Month Day HH:MM AM/PM. However, I don't want my x-axis to always have that formatting. When the time range gets smaller, I would want to only display hours, whereas when the time range gets larger, I would want to only display dates.
Proposal
A way to customize the heading/title of a grouped tooltip. My use case would benefit specifically from being able to set a custom DateFormat for it independently of the x-axis.
The text was updated successfully, but these errors were encountered: