Releases: imaNNeo/fl_chart
Releases · imaNNeo/fl_chart
0.11.0
- [Bugfix] Prevent show ScatterSpot if show is false, #385.
- [Improvement] Set default centerSpaceRadius to double.infinity in PieChartData, #384.
- [Improvement] Allowed to have topTitles in the BarChart, see BarChartSample5, #394.
- [Improvement] Added
touchedStackItem
andtouchedStackItemIndex
properties in the BarTouchedSpot to determine in which BarChartRodStackItem click happened, #393. - [Improvement] [BREAKING] Renamed
rodStackItem
torodStackItems
in BarChartRodData.
0.10.1
- [Improvement] Show barGroups
x
value instead ofindex
in bottom titles, #342. - [Improvement] [BREAKING] Use
double.infinity
instead ofdouble.nan
for lettingenterSpaceRadius
be as large as possible in the (PieChartData)[https://github.com/imaNNeoFighT/fl_chart/blob/master/repo_files/documentations/pie_chart.md#piechartdata], #377. - [Bugfix] Fixed PieChart bug with 1 section, #368.
0.10.0
- [IMPORTANT] BLACK LIVES MATTER
- [Improvement] Auto calculate interval in SideTitles and FlGridData, instead of hard coding 1, to prevent some performance issues like #101, #322. see BarChartSample4.
- [Bugfix] drawing dot on null spots
- [Bugfix] Fixed LineChart have multiple NULL spot bug.
- [Feature] added
checkToShowTitle
property to the SideTitles, for checking show or not show titles in the provided value, #331. see LineChartSample8. - [Feature] Added compatibily to have customized shapes for FlDotData, just override
FlDotData.etDotPainter
and pass your own painter or use built-in ones, see this sample. - [Improvement] [BREAKING] Replaced
clipToBorder
withclipData
in LineChartData to support clipping 4 sides of a chart separately.
0.9.4
- [Bugfix] Fixed showing PieChart on web (we've ignored
groupSpace
on web, because some BlendModes are not working yet)
0.9.3
0.9.2
- [Feature] Added
shadow
property in LineChartData to have shadow effect in our LineChart, take a look at LineChartSampl5, #304. - [Feature] Added
isStepLineChart
, andlineChartStepData
in the LineChartData to support Step Line Chart, take a look at lineChartSample3, #303. - [Improvement] Added
barData
parameter to checkToShowDot Function in the FlDotData.
0.9.0
- Added
strokeWidth
,getStrokeColor
,getDotColor
in the FlDotData, also removeddotColor
from it (you should usegetDotColor
instead, it gives you more customizability), now we have more customizability on FlDotData, check line_chart_sample3, and line_chart_sample5, #233, #99, #274. - Added
equatable
library to solve some equation issues. - Implemented negative values feature for the BarChart, #106, #103.
- add Equatable for all models, it leads to have a better performance.
- Fixed a minor touch bug in the BarChart.
- Fixed ScatterChart built-in touch behaviour.
- Fixed drawing grid lines bug, #280.
- Implemented FlDotData.
getDotColor
in a proper way, it returns a color based on the LineChartBarData color, #274, #282. - Updated LineChartData.
showingTooltipIndicators
field type to list of ShowingTooltipIndicators to have a clean naming.
0.8.7
0.8.6
0.8.5
- Added
fitInsideHorizontally
andfitInsideVertically
in ScatterTouchTooltipData - Fixed
clipToBorder
functionality basdd on the border sides.