Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2020-12-31 14:37:56 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c0e72d6f6a72d4f39c3f49193ead77f6299299e1
c0e72d6f
1 parent
381c2b11
Fix function name
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
pdf/lib/src/widgets/chart/chart.dart
pdf/lib/src/widgets/chart/legend.dart
pdf/lib/src/widgets/chart/chart.dart
View file @
c0e72d6
...
...
@@ -160,7 +160,7 @@ abstract class Dataset extends Widget {
void
paintBackground
(
Context
context
)
{}
Widget
legend
e
Shape
()
{
Widget
legendShape
()
{
return
Container
(
decoration:
BoxDecoration
(
color:
color
,
...
...
pdf/lib/src/widgets/chart/legend.dart
View file @
c0e72d6
...
...
@@ -57,7 +57,7 @@ class ChartLegend extends StatelessWidget {
width:
style
.
fontSize
,
height:
style
.
fontSize
,
margin:
const
EdgeInsets
.
only
(
right:
5
),
child:
dataset
.
legend
e
Shape
(),
child:
dataset
.
legendShape
(),
),
Text
(
dataset
.
legend
,
...
...
Please
register
or
login
to post a comment