AAChartModel / AAChartKit-Swift

📈📊📱💻🖥️An elegant modern declarative data visualization chart framework for iOS, iPadOS and macOS. Extremely powerful, supports line, spline, area, areaspline, column, bar, pie, scatter, angular gauges, arearange, areasplinerange, columnrange, bubble, box plot, error bars, funnel, waterfall and polar chart types. 极其精美而又强大的现代化声明式数据可视化图表框架,支持柱状图、条形图、折线图、曲线图、折线填充图、曲线填充图、气泡图、扇形图、环形图、散点图、雷达图、混合图等各种类型的多达几十种的信息图图表,完全满足工作所需.
https://cocoapods.org/pods/AAInfographics
MIT License
2.42k stars 258 forks source link

大佬,这个睡眠图会串色,就是正常的应该是紫色的,就是最右边的那个颜色,这个怎么处理呢 #438

Open wcb133 opened 1 year ago

wcb133 commented 1 year ago

大佬,这个睡眠图会串色,就是正常的应该是紫色的,就是最右边的那个颜色,这个怎么处理呢

image

设置代码如下:

let option = AAOptions()
            .chart(AAChart()
                .type(.xrange)
                .margin(top: 0, right: 0, bottom: 25, left: 0))
            .title(AATitle().text(""))
            .colors(["#4026E5","#AC60DF","#E1907B","#EEC967"])
            .xAxis(AAXAxis().visible(false))
            .yAxis(AAYAxis().visible(false)
                .title(AATitle()
                    .text(""))
                .categories(["","","",""])
                .gridLineWidth(0))
            .legend(AALegend()
                .enabled(false))
            .tooltip(AATooltip()
                .enabled(false))
            .plotOptions(AAPlotOptions()
                .series(AASeries()
                    .pointPadding(0)
                    .groupPadding(0)))
            .series([AASeriesElement()
                .borderRadius(4)
                .data([])])

        sleepChartView.aa_drawChartWithChartOptions(option)
wcb133 commented 1 year ago

有什么需要注意设置的么

AAChartModel commented 1 year ago

应该不会有这种 bug 吧, 你看 demo 中, 十几行数据, 也没有串色啊, 你是不是手动给 data 数组中的元素加了颜色的设置了?

MoShenGuo commented 1 year ago

你好,这个图是在demo哪一行点击进去了?我点击很多行都没有用,求告知

AAChartModel commented 1 year ago

@MoShenGuo 睡眠图其实是 AAChartKit-SwiftPro 版本中的图表类型 xrange

AAChartKit-Swift-Pro 项目地址链接:

AAChartModel commented 1 year ago

@MoShenGuo 参考:

AAChartModel commented 1 year ago

@MoShenGuo

OC 版本 AAChartKit 的睡眠图, 参考: