I am using the Charts pod for iOS (github here: https://github.com/danielgindi/Charts ) to make a pie chart.
There is a 1 pixel line in between each slice of the chart. I would like to change the color of this line and/or make it thicker. However, I have not been able to find a way to do either of these things. How do I do this?
Here is what I tried unsuccessfully based on what I found in the PieChartView docs:
chart.tintColor = .blue
chart.maxAngle = 5
Its slice spacing between each slice of Pie Chart. If you want to change or increase that space then you can set space using yourPieChartDataSet.sliceSpace = 5.
i think ther are no seprators you can change the background color of your view and set the corner radius to height / 2
Is it possible to achieve such area/plotbands(as shown in image) in highchart?
I need to draw horizontal line on highcharts stacked column as image below
In image Bold black line is showing, I need to draw same, however Bar color opacity changes when it split columns.
How to remove/hide sliced line from pie chart when only one object with 100%? Issue in IE and Firefox.
I am using the iOS Charts library in my application. Charts are plotted correctly but the X axis values are shown on both sides in Line Charts. Is there any way to hide it or remove it ?
You can use lineChartView.rightAxis.enabled = false to hide rightAxis or replace with leftAxis