Description
To improve accessibility of PieChart it would help to have an optional pattern e.g. dots to make pie chart sections or segments easier to distinguish for people who have trouble with low contrast.
Example
Proposed Solution
class PieChartSectionData {
// ...
final DotPattern pattern;
// ...
}
class PieChartStackSegmentData {
// ...
final DotPattern pattern;
// ...
}
class DotPattern {
final Color color;
final double spacing;
final double dotRadius;
}
Description
To improve accessibility of PieChart it would help to have an optional pattern e.g. dots to make pie chart sections or segments easier to distinguish for people who have trouble with low contrast.
Example
Proposed Solution