ye fan

Results 7 issues of ye fan

![IMG_0031](https://user-images.githubusercontent.com/42810994/147720359-45fa4bf3-6c7d-4d3e-954b-dea05edcf0a7.jpg) 代码如下 :` AAChartModel *aaChartModel= AAChartModel.new .chartTypeSet(AAChartTypePie) .colorsThemeSet(colorArr) .titleSet(@"") .subtitleSet(@"") .tooltipEnabledSet(NO) .legendEnabledSet(NO) .dataLabelsEnabledSet(YES) .seriesSet( @[ AAObject(AASeriesElement) .nameSet(@"") .innerSizeSet(@"30%")//内部圆环半径大小占比 .sizeSet(@130)//尺寸大小 .lineWidthSet(@1) .borderWidthSet(@0)//描边的宽度 .allowPointSelectSet(NO)//是否允许在点击数据点标记(扇形图点击选中的块发生位移) // .statesSet(@{@"hover":@{@"enabled": @(NO)}})//禁用点击区块之后出现的半透明遮罩层 (先定义bool变量的原因是,直接用true,false,处理完成之后容易变成0或者1。https://www.cnblogs.com/haojuncong/p/4652998.html ) .dataSet(titleArray) .dataLabelsSet((AAObject(AADataLabels) .enabledSet(YES)...

rt,view里自定了一个tableview,执行dismiss后屏幕上有view的残影闪了几下然后消失,目前我这边只能isNeedAnimate设为false。

RT,设置为13,左右各一个按钮,距离屏幕两边的间距变为了9,少了4px。系统为15.2,iphone x 系统15.1,无此问题,不像是15.0导致的,是否是iphone13的问题?

![image](https://user-images.githubusercontent.com/42810994/187584175-efba5d9d-4eb1-45b4-8fb0-bea4ec9da958.png)

此为饼图图例的代码,设置了font-weight为regular,但默认还是粗体,且对fontWeight反复设置bold和regular字体粗细看起来都没有任何变化。 `.legend(AALegend() .enabled(true) .floating(false) .itemStyle(AAItemStyle() .fontWeight(AAChartFontWeightType.regular) .color("#666666")) .align(.center) .verticalAlign(.bottom) .layout(.horizontal) .symbolHeight(10) .symbolWidth(10) .itemMarginTop(10) .itemWidth(100) .labelFormat("{name} {percentage:.2f}% ") .x(0) )` ![IMG_1587](https://user-images.githubusercontent.com/42810994/186603844-b4a1c5d5-e456-40a4-87d0-52c69a8d3878.jpg)