Releases: imaNNeo/fl_chart
Releases · imaNNeo/fl_chart
0.8.4-test1
- Improved documentations
0.8.4
- Added
preventCurveOvershootingThreshold
in LineChartBarData for applying prevent overshooting algorithm, #193. - Fixed
clipToBorder
bug in the LineChartData, #228, #214. - Removed unused
enableNormalTouch
property from all charts TouchData. - Implemented ImageAnnotations feature (added
image
, andsizedPicture
in the VerticalLine, and the HorizontalLine, check this sample for more information. - BREAKING CHANGE-> changed
fitInsideTheChart
tofitInsideHorizontally
and addedfitInsideVertically
to support both sides, #225.
0.8.3
0.8.2
- added
fullHeightTouchLine
in LineTouchData to show a full height touch line, see sample in merge request #208. - added
label
(HorizontalLineLabel) inside HorizontalLine and VerticalLine to show a lable text on the lines.
0.8.1
- yaaay, added some basic unit tests
- skipped the first and the last grid lines from drawing, #174.
- prevent to draw touchedSpotDot if
show
is false, #180. - improved paint order, more details in #175.
- added possibility to set
double.nan
incenterSpaceRadius
for the PieChart to let it to be calculated according to the view size, fixed #179.
0.8.0
- added functionallity to have dashed lines, in everywhere we draw line, there should be a property called
dashArray
(for example check LineChartBarData, and see LineChartSample8) - BREAKING CHANGE:
- swapped HorizontalExtraLines, and VerticalExtraLines functionalities (now it has a well definition)
- and also removed
showVerticalLines
, andshowHorizontalLines
from ExtraLinesData, if thehorizontalLines
, orverticalLines
is empty we don't show them
0.7.0
- added rangeAnnotations in the LineChartData to show range annotations, #163.
- removed
isRound
fiend in the BarChartRodData to add more customizability, and fixed #147 bug. - fixed sever bug of click on pie chart, #146.
0.6.3
0.6.2
- added
axisTitleData
field to all axis base charts (Line, Bar, Scatter) to show the axes titles, see LineChartSample4 and LineChartSample5.