Open
Description
I have 2 kind of data. Value2 goes from 0 to 220, so range on X axis is fine.
But on Y axis, it's from 107 to 105, so really small changes.
How to make Y axis more detailed, so changes are more visible?
This is the current code:
AAChartModel *aaChartModel= AAObject(AAChartModel)
.chartTypeSet(AAChartTypeLine)
.titleSet(@"")
.categoriesSet(speedIntArray)
.yAxisTitleSet(@"")
.colorsThemeSet(@[@"#15A3FE",@"#FE7620"])
.seriesSet(@[
AAObject(AASeriesElement)
.nameSet(@"Value 1")
.dataSet(heightArray)
,
AAObject(AASeriesElement)
.nameSet(@"Value 2")
.dataSet(speedIntArray)])
.markerRadiusSet(@1);
AAItemStyle *aaItemStyle = AAObject(AAItemStyle)
.colorSet(@"#ffffff")
.cursorSet(@"pointer")
.fontSizeSet(@"12px")
.fontWeightSet(AAChartFontWeightTypeThin);
AAOptions *aaOptions = [AAOptionsConstructor configureChartOptionsWithAAChartModel:aaChartModel];
aaOptions.legend.itemStyle = aaItemStyle;
[_aaChartView aa_drawChartWithOptions:aaOptions];
Activity
AAChartModel commentedon Jan 30, 2024
Maybe you need to change the chart to a dual Y-axis chart.
mladjan commentedon Jan 30, 2024
@AAChartModel how? I don't see any AAChartType like this.
Can you help me with some code snippet?
AAChartModel commentedon Jan 30, 2024
mladjan commentedon Feb 5, 2024
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 of chart.
I tried with:
_aaChartView.isClearBackgroundColor = YES;
Is there any other way to make it another color than white?
AAChartModel commentedon Feb 5, 2024
What effect are you looking for? Can you provide a screenshot of the design draft?
mladjan commentedon Feb 5, 2024
This is how it looks now, I just need the background to be another color :)
AAChartModel commentedon Feb 5, 2024
The code of
AAChartView.m
fileThe key content
So, If you just want to change the chart
bacckgroundColor
, do not use_aaChartView.isClearBackgroundColor = YES;
mladjan commentedon Feb 5, 2024
I have removed "isClearBackground" property, and manually set:
aaaOptions.chart.backgroundColor = @"rgba(25,25,35,1)";
But it's still white
AAChartModel commentedon Feb 5, 2024
You can also see the sample in the demo
In this example, the background color is set to
@"#191E40"
.AAChart *aaChart = AAChart.new .backgroundColorSet(@"#191E40");
mladjan commentedon Feb 5, 2024
It works with this code sample:
mladjan commentedon Mar 12, 2024
Is there a possibility to add 3rd Y axis and to set proper scaling on that?
When I added 3rd Y axis parameter, it uses scaling from second Y axis and because of that, resolution is small.