An An

Results 545 comments of An An

What effect are you looking for? Can you provide a screenshot of the design draft?

The code of `AAChartView.m` file ```objc - (void)configureTheOptionsJsonStringWithAAOptions:(AAOptions *)aaOptions { if (_isClearBackgroundColor) { aaOptions.chart.backgroundColor = @"rgba(0,0,0,0)"; } if (_clickEventEnabled == true) { aaOptions.clickEventEnabled = true; [self configurePlotOptionsSeriesPointEventsWithAAOptions:aaOptions]; } if (_mouseOverEventEnabled...

You can also see the sample in the demo * https://github.com/AAChartModel/AAChartKit/issues/771 In this example, the background color is set to `@"#191E40"`. ```objc AAChart *aaChart = AAChart.new .backgroundColorSet(@"#191E40"); ```

不太清楚你需要这个功能是为了什么, 但是 Highcharts 似乎没有提供相关的功能. 参考 Highcharts 官方文档: * https://api.highcharts.com/highcharts/

如你所言, 我将 demo 中 290 行的数值进行了修改, 将数组中的第二个和第三个数值改为相同的值. 修改后的结果如下: ```objc } else if (_chartType == BasicChartVCChartTypeSpline) { AASeriesElement *element1 = AASeriesElement.new .nameSet(@"2017") .lineWidthSet(@5.0) .dataSet(@[@5.1, @32.2, @32.2, @37.4, @23.5, @40.6,]); AASeriesElement *element2...

这就难搞了, 我没有支持最新系统版本的 iPad, 也就没办法复现问题了.

或者你把图表类型改为曲线**填充**图, 看看是否正常

如果曲线填充图正常的话, 你可以将填充图的颜色设置为透明色, 这样从视觉上看就是曲线图了.