-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Adds support for mirrored label text direction #1890
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
base: main
Are you sure you want to change the base?
Conversation
Perfect! |
@imaNNeo I fixed the tests |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1890 +/- ##
==========================================
+ Coverage 92.43% 92.47% +0.04%
==========================================
Files 46 46
Lines 3344 3364 +20
==========================================
+ Hits 3091 3111 +20
Misses 253 253
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
I see you didn't write new tests. Please write some tests to resolve the tests pipeline here |
Can you please rebase your branch? |
…s own touchData for example, lineTouchData, barTouchData, ...)
…e the basic information about our brand new CandlestickChart
… canvas (based on the scatter painter)
…have the full structure of having candlesticks, let's implement a sample
…in our axis-based charts
…ur candle_stick_chart to draw the touched/hoverer point
…k helper painters
…k_chart_painter_test.dart
…sponse objects (LineTouchResponse, BarTouchResponse, ...)
…dicator to allow user to customize the touch lines
Currently the
HorizontalLineLabel
andVerticalLineLabel
support.horizontal
and.vertical
direction but there is no way (afaik) how to flip the text upside down along this direction. This is a problem mainly for vertical direction where the text is upside down (in relation to axis names).This PR adds additional label direction options:
.horizontalMirrored
and.verticalMirrored
which would flip the text upside down. This is not a breaking change.