Releases: imaNNeo/fl_chart
Releases · imaNNeo/fl_chart
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.
0.6.1
0.6.0
- fixed calculating size for handling touches bug, #126
- added
rotateAngle
property to rotate the SideTitles, fixed issue #75 , see in this sample - BREAKING CHANGES:
- some property names updated in the FlGridData:
drawHorizontalGrid
->drawHorizontalLine
,getDrawingHorizontalGridLine
->getDrawingHorizontalLine
,checkToShowHorizontalGrid
->checkToShowHorizontalLine
(and same for vertical properties), fixed issue #92