Mladjan Antic
Mladjan Antic
Is there any updates on this topic?
New tiles are as overlay on MKMapView. Can you post your code here?
Hi Raptor, This is just mkmapkit overlay, you can zoom map like before. Sent from my iPhone 5 test device On 29.10.2012., at 11.19, Raptor Kwok [email protected] wrote: > Is...
@AAChartModel how? I don't see any AAChartType like this. Can you help me with some code snippet?
I managed to make double `y axis chart, but there is no way to change the background color from White to something else. Setting background doesn't work on this type...
 This is how it looks now, I just need the background to be another color :)
I have removed "isClearBackground" property, and manually set: ` aaaOptions.chart.backgroundColor = @"rgba(25,25,35,1)"; ` But it's still white
It works with this code sample: ``` AAChart *aaChart = AAChart.new .backgroundColorSet(@"#191923"); AAOptions *aaaOptions = AAOptions.new .chartSet(aaChart) .titleSet(aaTitle) .xAxisSet(aaXAxis) .yAxisSet((id)@[yAxisOne,yAxisTwo]) .tooltipSet(aaTooltip) .seriesSet(aaSeries) ; [_aaChartView aa_drawChartWithOptions:aaaOptions]; ```
> You can also see the sample in the demo > > * [Support Double Y Axes And Column Line Mixed Chart(双Y轴柱形曲线混合图) #771](https://github.com/AAChartModel/AAChartKit/issues/771) > > In this example, the background...