This is a demo project which represents how to use ArcView component.
Please watch the clip "ArcView Demo.mp4" to have a better understanding of the component.
ArcView represents array of data (value & title pair) in a graphical way.
/** Sample data */ static func all() -> [ArcData]{ return [ ArcData(value: 40, description: "Share"), ArcData(value: 25, description: "Time Deposits"), ArcData(value: 20, description: "Gold & Silver"), ArcData(value: 10, description: "Demand Deposits"), ArcData(value: 5, description: "Fund") ] }