flutter-charts icon indicating copy to clipboard operation
flutter-charts copied to clipboard

Customizable charts library for flutter.

Results 22 flutter-charts issues
Sort by recently updated
recently updated
newest added

Let's say I have the following code. ```dart import 'dart:math'; import 'package:charts_painter/chart.dart'; import 'package:flutter/material.dart'; void main() => runApp(const App()); class App extends StatelessWidget { const App({Key? key}) : super(key: key);...

bug

Just to clarify, looking at the examples, it seems positions on x-axis are not based on values, but on indices. So, it is not possible to draw line chart where...

enhancement

The width of the element to detect clicks on chart elements is calculated by the size of the entire chart widget. But when we use Y-axis decoration with `showValues: true`,...

bug

Hi I would like to ask a doubt related scrollable chart, is there available maxVisibleRange property in scrollable (Like if we have a view port, can we set a range...

enhancement

Hi, I would like to edit those padding values(horizontalaxisunit) and learn & enhancement more in scrollable chart, please suggest new features can we apply in scrollable chart, Really I am...

Hello, I wanted to add pagination to my charts. Initially, the chart will receive recent data. But if the user scrolls to the end, it will run a function and...

question

When setting `maxBarWidth` in the item options the ValueDecoration alignment is not properly aligned anymore. ``` ... foregroundDecorations: [ ValueDecoration( textStyle: Theme.of(context).textTheme.bodyText2, alignment: Alignment.topCenter, ), ], itemOptions: BarItemOptions( maxBarWidth: 100,...

bug

I got click event of xAxis label but I want to increase the clickable area of the x-axis label and want to show selected xAxis with the rounded background colour....

enhancement

When we setting `ChartData. axisMin` the Offset in `TargetLineDecoration.applyPaintTransform` calculates wrongly. The problem is in: `Offset(state.defaultPadding.left + state.defaultMargin.left, _height - (state.defaultMargin.bottom + state.defaultPadding.bottom) - (scale * (target ?? 0.0) +...

bug
good first issue

When the data in the graph is less, the graph width will not be max. This presents a bad outlook. Can we increase the width of the graph when there...

enhancement