-
-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
漏斗图的引导线怎么让它在左边显示 #1576
Comments
Highcharts 貌似没这个选项. |
如下配置
|
对应的 OC 代码: - (AAOptions *)radarChartWithCategories {
return AAOptions.new
.chartSet(AAChart.new
.polarSet(true)
.typeSet(AAChartTypeLine))
.titleSet(AATitle.new
.textSet(@"五边形雷达图示例"))
.xAxisSet(AAXAxis.new
.categoriesSet(@[@"指标1", @"指标2", @"指标3", @"指标4", @"指标5"])
.tickmarkPlacementSet(@"on")
.lineWidthSet(@0))
.yAxisSet(AAYAxis.new
.gridLineInterpolationSet(@"polygon")
.lineWidthSet(@0)
.minSet(@0))
.seriesSet(@[
AASeriesElement.new
.nameSet(@"数据系列1")
.dataSet(@[@5, @3, @4, @7, @2])
.pointPlacementSet(@"on")
]);
} |
感谢老哥,愿前程似锦一路繁花 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
现在漏斗图的引导线好像只能 在右边吧,有办法让它在左边么
设置了偏移 只有文字过去了,引导线还在右边
The text was updated successfully, but these errors were encountered: