├── .DS_Store ├── Icon-72.png ├── Icon.png ├── Icon@2x.png ├── MIMChartLib.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── mac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── reebok.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ │ └── reeturaj.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ ├── mac.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ ├── MIMChartLib.xcscheme │ │ └── xcschememanagement.plist │ ├── reebok.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ ├── MIMChartLib.xcscheme │ │ └── xcschememanagement.plist │ └── reeturaj.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── MIMChartLib.xcscheme │ └── xcschememanagement.plist ├── MIMChartLib ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── How to Use │ ├── BarTestClass.h │ ├── BarTestClass.m │ ├── BarTestClass.xib │ ├── ChartAnimation.h │ ├── ChartAnimation.m │ ├── ChartAnimation.xib │ ├── DataManager.h │ ├── DataManager.m │ ├── DefaultDetailView.h │ ├── DefaultDetailView.m │ ├── DefaultDetailView.xib │ ├── DefaultInfoBoxTestClass.h │ ├── DefaultInfoBoxTestClass.m │ ├── DefaultInfoBoxTestClass.xib │ ├── DetailViewStyle2.h │ ├── DetailViewStyle2.m │ ├── DetailViewStyle2.xib │ ├── DetailViewStyle3.h │ ├── DetailViewStyle3.m │ ├── DetailViewStyle3.xib │ ├── GaugeGraphTestClass.h │ ├── GaugeGraphTestClass.m │ ├── GroupBarTestClass.h │ ├── GroupBarTestClass.m │ ├── GroupBarTestClass.xib │ ├── InfoBoxStyle1TestClass.h │ ├── InfoBoxStyle1TestClass.m │ ├── InfoBoxStyle1TestClass.xib │ ├── InfoBoxStyle2TestClass.h │ ├── InfoBoxStyle2TestClass.m │ ├── InfoBoxStyle2TestClass.xib │ ├── ListBasicPieCharts.h │ ├── ListBasicPieCharts.m │ ├── ListBasicPieCharts.xib │ ├── ListBevelPieCharts.h │ ├── ListBevelPieCharts.m │ ├── ListBevelPieCharts.xib │ ├── ListBiTransPieChart.h │ ├── ListBiTransPieChart.m │ ├── ListBiTransPieChart.xib │ ├── ListPaddedPieCharts.h │ ├── ListPaddedPieCharts.m │ ├── ListPaddedPieCharts.xib │ ├── ListSectionedPieCharts.h │ ├── ListSectionedPieCharts.m │ ├── ListSectionedPieCharts.xib │ ├── MultipleBarViews.h │ ├── MultipleBarViews.m │ ├── MultipleBarViews.xib │ ├── RangeGraphTestClass.h │ ├── RangeGraphTestClass.m │ ├── RangeGraphTestClass.xib │ ├── StackedBarTestClass.h │ ├── StackedBarTestClass.m │ ├── StackedBarTestClass.xib │ ├── TestClassFragmented.h │ ├── TestClassFragmented.m │ ├── TestClassFragmented.xib │ ├── TestLineClass.h │ ├── TestLineClass.m │ ├── TestLineClass.xib │ ├── TestLineClass2.h │ ├── TestLineClass2.m │ ├── TestLineClass2.xib │ ├── UserDefinedDetailView.h │ ├── UserDefinedDetailView.m │ ├── UserDefinedDetailView.xib │ ├── WallTestClass.h │ ├── WallTestClass.m │ ├── WallTestClass.xib │ ├── data3.csv │ ├── data4.csv │ ├── imageForPopUp │ │ ├── bird1.jpg │ │ ├── bird2.jpg │ │ ├── bird3.jpg │ │ ├── bird4.jpg │ │ ├── dog1.jpg │ │ ├── dog2.jpg │ │ ├── dog3.jpg │ │ ├── feline1.jpg │ │ ├── feline2.jpg │ │ ├── feline3.jpg │ │ ├── ham1.jpg │ │ ├── ham2.jpg │ │ ├── ham3.jpg │ │ ├── horse1.jpg │ │ ├── horse2.jpg │ │ ├── rabbit1.jpg │ │ └── rabbit2.jpg │ ├── pajarito1.png │ ├── pajarito2.png │ ├── pajarito3.png │ ├── pajarito4.png │ ├── pajarito5.png │ ├── pajarito6.png │ ├── pajarito7.png │ └── trans_icon.png ├── Level2iPadController.h ├── Level2iPadController.m ├── Level2iPadController.xib ├── Lib Files │ ├── .DS_Store │ ├── Accessories │ │ ├── Anchor.h │ │ ├── Anchor.m │ │ ├── AnchorDelegate.h │ │ ├── AnchorInfo.h │ │ ├── AnchorInfo.m │ │ ├── Constant.h │ │ ├── CustomBox.h │ │ ├── CustomBox.m │ │ ├── MIMFloatingView.h │ │ ├── MIMFloatingView.m │ │ ├── MIMMargin.h │ │ ├── MIMMargin.m │ │ ├── MIMMeter.h │ │ ├── MIMMeter.m │ │ ├── MIMProperties.h │ │ ├── MIMProperties.m │ │ ├── MIM_MathClass.h │ │ ├── MIM_MathClass.m │ │ ├── PageControl.h │ │ ├── PageControl.m │ │ ├── XAxisBand.h │ │ ├── XAxisBand.m │ │ ├── XAxisLabel.h │ │ ├── XAxisLabel.m │ │ ├── YAxisBand.h │ │ └── YAxisBand.m │ ├── Bar Chart │ │ ├── .DS_Store │ │ ├── BarGraphDelegate.h │ │ ├── BarInfoBox.h │ │ ├── BarInfoBox.m │ │ ├── BarView.h │ │ ├── BarView.m │ │ ├── MIMBarGraph.h │ │ └── MIMBarGraph.m │ ├── ClusterGraph │ │ ├── Cluster.h │ │ ├── Cluster.m │ │ ├── ClusterGraph.h │ │ ├── ClusterGraph.m │ │ └── ClusterGraphDelegate.h │ ├── Colors │ │ ├── MIMColor.h │ │ ├── MIMColor.m │ │ ├── MIMColorClass.h │ │ └── MIMColorClass.m │ ├── FragmentedPieChart │ │ ├── DoughtNutFragmentTitle.h │ │ ├── DoughtNutFragmentTitle.m │ │ ├── FragmentedDoughNutDelegate.h │ │ ├── MIMFragmentedDoughNut.h │ │ └── MIMFragmentedDoughNut.m │ ├── GaugeMeter │ │ ├── GaugeGraph.h │ │ └── GaugeGraph.m │ ├── Images │ │ ├── monotone_location_pin_marker.png │ │ └── monotone_position_marker.png │ ├── Line Graph │ │ ├── LineGraphDelegate.h │ │ ├── LineInfoBox.h │ │ ├── LineInfoBox.m │ │ ├── LineScrollView.h │ │ ├── LineScrollView.m │ │ ├── MIMLineGraph.h │ │ ├── MIMLineGraph.m │ │ ├── MultiLineLongGraph.h │ │ ├── MultiLineLongGraph.m │ │ ├── lines.png │ │ └── lines1.png │ ├── Pie Chart │ │ ├── BasicPie.h │ │ ├── BasicPie.m │ │ ├── BasicPieChart.h │ │ ├── BasicPieChart.m │ │ ├── BasicPieChartSample.png │ │ ├── BevelPieChart.h │ │ ├── BevelPieChart.m │ │ ├── BevelPieChart.png │ │ ├── BiTransPieCHartSample.png │ │ ├── BiTransPieChart.h │ │ ├── BiTransPieChart.m │ │ ├── DefaultInfoBox.h │ │ ├── DefaultInfoBox.m │ │ ├── DefaultPopOverForPieChart.h │ │ ├── DefaultPopOverForPieChart.m │ │ ├── DetailPopOverStyle2.h │ │ ├── DetailPopOverStyle2.m │ │ ├── InfoBoxStyle1.h │ │ ├── InfoBoxStyle1.m │ │ ├── InfoBoxStyle2.h │ │ ├── InfoBoxStyle2.m │ │ ├── LayeredPieChart.h │ │ ├── LayeredPieChart.m │ │ ├── LeftTriangleIcon.png │ │ ├── LeftTriangleIconBlack.png │ │ ├── MIMPieChart.h │ │ ├── MIMPieChart.m │ │ ├── MIMPieChartDelegate.h │ │ ├── OthersPart1.png │ │ ├── OthersPieChart.h │ │ ├── OthersPieChart.m │ │ ├── PaddedPieChart.h │ │ ├── PaddedPieChart.m │ │ ├── PermanentScroller.h │ │ ├── PermanentScroller.m │ │ ├── PieBubble.h │ │ ├── PieBubble.m │ │ ├── RightTriangleIcon.png │ │ ├── RightTriangleIconBlack.png │ │ ├── ScrollViewSubClass.h │ │ ├── ScrollViewSubClass.m │ │ ├── SectionedPieChart.h │ │ ├── SectionedPieChart.m │ │ ├── layeredpiechart.jpg │ │ ├── otherspart2.png │ │ ├── padded_pie_chart.png │ │ ├── pie_pop_over_gradient.jpg │ │ ├── sectioned_pie_chart.png │ │ └── trophy.png │ ├── Range Chart │ │ ├── MIMLongRangeGraph.h │ │ ├── MIMLongRangeGraph.m │ │ ├── MIMRangeGraph.h │ │ ├── MIMRangeGraph.m │ │ └── RangeGraphDelegate.h │ └── Wall Graph │ │ ├── MIMWallGraph.h │ │ ├── MIMWallGraph.m │ │ ├── MultiWallLongGraph.h │ │ ├── MultiWallLongGraph.m │ │ └── WallGraphDelegate.h ├── MIMChartLib-Info.plist ├── MIMChartLib-Prefix.pch ├── MainController.h ├── MainController.m ├── MainController.xib ├── en.lproj │ └── InfoPlist.strings └── main.m └── README /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/.DS_Store -------------------------------------------------------------------------------- /Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/Icon-72.png -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/Icon.png -------------------------------------------------------------------------------- /Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/Icon@2x.png -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reebok.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reebok.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reebok.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reebok.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reeturaj.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reeturaj.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reeturaj.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/project.xcworkspace/xcuserdata/reeturaj.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/MIMChartLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/MIMChartLib.xcscheme -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/reebok.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/reebok.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/reebok.xcuserdatad/xcschemes/MIMChartLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/reebok.xcuserdatad/xcschemes/MIMChartLib.xcscheme -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/reebok.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/reebok.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/reeturaj.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/reeturaj.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/reeturaj.xcuserdatad/xcschemes/MIMChartLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/reeturaj.xcuserdatad/xcschemes/MIMChartLib.xcscheme -------------------------------------------------------------------------------- /MIMChartLib.xcodeproj/xcuserdata/reeturaj.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib.xcodeproj/xcuserdata/reeturaj.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MIMChartLib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/.DS_Store -------------------------------------------------------------------------------- /MIMChartLib/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/AppDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/AppDelegate.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/BarTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/BarTestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/BarTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/BarTestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/BarTestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/BarTestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ChartAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ChartAnimation.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ChartAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ChartAnimation.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ChartAnimation.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ChartAnimation.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DataManager.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DataManager.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DefaultDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DefaultDetailView.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DefaultDetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DefaultDetailView.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DefaultDetailView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DefaultDetailView.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DefaultInfoBoxTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DefaultInfoBoxTestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DefaultInfoBoxTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DefaultInfoBoxTestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DefaultInfoBoxTestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DefaultInfoBoxTestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DetailViewStyle2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DetailViewStyle2.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DetailViewStyle2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DetailViewStyle2.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DetailViewStyle2.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DetailViewStyle2.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DetailViewStyle3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DetailViewStyle3.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DetailViewStyle3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DetailViewStyle3.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/DetailViewStyle3.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/DetailViewStyle3.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/GaugeGraphTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/GaugeGraphTestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/GaugeGraphTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/GaugeGraphTestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/GroupBarTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/GroupBarTestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/GroupBarTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/GroupBarTestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/GroupBarTestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/GroupBarTestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/InfoBoxStyle1TestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/InfoBoxStyle1TestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/InfoBoxStyle1TestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/InfoBoxStyle1TestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/InfoBoxStyle1TestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/InfoBoxStyle1TestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/InfoBoxStyle2TestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/InfoBoxStyle2TestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/InfoBoxStyle2TestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/InfoBoxStyle2TestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/InfoBoxStyle2TestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/InfoBoxStyle2TestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBasicPieCharts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBasicPieCharts.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBasicPieCharts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBasicPieCharts.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBasicPieCharts.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBasicPieCharts.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBevelPieCharts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBevelPieCharts.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBevelPieCharts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBevelPieCharts.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBevelPieCharts.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBevelPieCharts.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBiTransPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBiTransPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBiTransPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBiTransPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListBiTransPieChart.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListBiTransPieChart.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListPaddedPieCharts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListPaddedPieCharts.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListPaddedPieCharts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListPaddedPieCharts.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListPaddedPieCharts.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListPaddedPieCharts.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListSectionedPieCharts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListSectionedPieCharts.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListSectionedPieCharts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListSectionedPieCharts.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/ListSectionedPieCharts.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/ListSectionedPieCharts.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/MultipleBarViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/MultipleBarViews.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/MultipleBarViews.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/MultipleBarViews.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/MultipleBarViews.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/MultipleBarViews.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/RangeGraphTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/RangeGraphTestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/RangeGraphTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/RangeGraphTestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/RangeGraphTestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/RangeGraphTestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/StackedBarTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/StackedBarTestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/StackedBarTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/StackedBarTestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/StackedBarTestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/StackedBarTestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestClassFragmented.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestClassFragmented.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestClassFragmented.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestClassFragmented.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestClassFragmented.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestClassFragmented.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestLineClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestLineClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestLineClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestLineClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestLineClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestLineClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestLineClass2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestLineClass2.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestLineClass2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestLineClass2.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/TestLineClass2.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/TestLineClass2.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/UserDefinedDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/UserDefinedDetailView.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/UserDefinedDetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/UserDefinedDetailView.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/UserDefinedDetailView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/UserDefinedDetailView.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/WallTestClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/WallTestClass.h -------------------------------------------------------------------------------- /MIMChartLib/How to Use/WallTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/WallTestClass.m -------------------------------------------------------------------------------- /MIMChartLib/How to Use/WallTestClass.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/WallTestClass.xib -------------------------------------------------------------------------------- /MIMChartLib/How to Use/data3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/data3.csv -------------------------------------------------------------------------------- /MIMChartLib/How to Use/data4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/data4.csv -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/bird1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/bird1.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/bird2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/bird2.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/bird3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/bird3.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/bird4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/bird4.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/dog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/dog1.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/dog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/dog2.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/dog3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/dog3.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/feline1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/feline1.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/feline2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/feline2.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/feline3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/feline3.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/ham1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/ham1.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/ham2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/ham2.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/ham3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/ham3.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/horse1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/horse1.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/horse2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/horse2.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/rabbit1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/rabbit1.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/imageForPopUp/rabbit2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/imageForPopUp/rabbit2.jpg -------------------------------------------------------------------------------- /MIMChartLib/How to Use/pajarito1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/pajarito1.png -------------------------------------------------------------------------------- /MIMChartLib/How to Use/pajarito2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/pajarito2.png -------------------------------------------------------------------------------- /MIMChartLib/How to Use/pajarito3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/pajarito3.png -------------------------------------------------------------------------------- /MIMChartLib/How to Use/pajarito4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/pajarito4.png -------------------------------------------------------------------------------- /MIMChartLib/How to Use/pajarito5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/pajarito5.png -------------------------------------------------------------------------------- /MIMChartLib/How to Use/pajarito6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/pajarito6.png -------------------------------------------------------------------------------- /MIMChartLib/How to Use/pajarito7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/pajarito7.png -------------------------------------------------------------------------------- /MIMChartLib/How to Use/trans_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/How to Use/trans_icon.png -------------------------------------------------------------------------------- /MIMChartLib/Level2iPadController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Level2iPadController.h -------------------------------------------------------------------------------- /MIMChartLib/Level2iPadController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Level2iPadController.m -------------------------------------------------------------------------------- /MIMChartLib/Level2iPadController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Level2iPadController.xib -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/.DS_Store -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/Anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/Anchor.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/Anchor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/Anchor.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/AnchorDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/AnchorDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/AnchorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/AnchorInfo.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/AnchorInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/AnchorInfo.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/Constant.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/CustomBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/CustomBox.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/CustomBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/CustomBox.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMFloatingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMFloatingView.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMFloatingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMFloatingView.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMMargin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMMargin.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMMargin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMMargin.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMMeter.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMMeter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMMeter.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMProperties.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIMProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIMProperties.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIM_MathClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIM_MathClass.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/MIM_MathClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/MIM_MathClass.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/PageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/PageControl.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/PageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/PageControl.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/XAxisBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/XAxisBand.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/XAxisBand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/XAxisBand.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/XAxisLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/XAxisLabel.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/XAxisLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/XAxisLabel.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/YAxisBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/YAxisBand.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Accessories/YAxisBand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Accessories/YAxisBand.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/.DS_Store -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/BarGraphDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/BarGraphDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/BarInfoBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/BarInfoBox.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/BarInfoBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/BarInfoBox.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/BarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/BarView.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/BarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/BarView.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/MIMBarGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/MIMBarGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Bar Chart/MIMBarGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Bar Chart/MIMBarGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/ClusterGraph/Cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/ClusterGraph/Cluster.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/ClusterGraph/Cluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/ClusterGraph/Cluster.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/ClusterGraph/ClusterGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/ClusterGraph/ClusterGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/ClusterGraph/ClusterGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/ClusterGraph/ClusterGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/ClusterGraph/ClusterGraphDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/ClusterGraph/ClusterGraphDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Colors/MIMColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Colors/MIMColor.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Colors/MIMColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Colors/MIMColor.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Colors/MIMColorClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Colors/MIMColorClass.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Colors/MIMColorClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Colors/MIMColorClass.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/FragmentedPieChart/DoughtNutFragmentTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/FragmentedPieChart/DoughtNutFragmentTitle.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/FragmentedPieChart/DoughtNutFragmentTitle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/FragmentedPieChart/DoughtNutFragmentTitle.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/FragmentedPieChart/FragmentedDoughNutDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/FragmentedPieChart/FragmentedDoughNutDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/FragmentedPieChart/MIMFragmentedDoughNut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/FragmentedPieChart/MIMFragmentedDoughNut.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/FragmentedPieChart/MIMFragmentedDoughNut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/FragmentedPieChart/MIMFragmentedDoughNut.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/GaugeMeter/GaugeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/GaugeMeter/GaugeGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/GaugeMeter/GaugeGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/GaugeMeter/GaugeGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Images/monotone_location_pin_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Images/monotone_location_pin_marker.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Images/monotone_position_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Images/monotone_position_marker.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/LineGraphDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/LineGraphDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/LineInfoBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/LineInfoBox.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/LineInfoBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/LineInfoBox.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/LineScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/LineScrollView.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/LineScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/LineScrollView.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/MIMLineGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/MIMLineGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/MIMLineGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/MIMLineGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/MultiLineLongGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/MultiLineLongGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/MultiLineLongGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/MultiLineLongGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/lines.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Line Graph/lines1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Line Graph/lines1.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BasicPie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BasicPie.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BasicPie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BasicPie.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BasicPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BasicPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BasicPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BasicPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BasicPieChartSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BasicPieChartSample.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BevelPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BevelPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BevelPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BevelPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BevelPieChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BevelPieChart.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BiTransPieCHartSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BiTransPieCHartSample.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BiTransPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BiTransPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/BiTransPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/BiTransPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/DefaultInfoBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/DefaultInfoBox.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/DefaultInfoBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/DefaultInfoBox.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/DefaultPopOverForPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/DefaultPopOverForPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/DefaultPopOverForPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/DefaultPopOverForPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/DetailPopOverStyle2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/DetailPopOverStyle2.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/DetailPopOverStyle2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/DetailPopOverStyle2.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle1.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle1.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle2.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/InfoBoxStyle2.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/LayeredPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/LayeredPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/LayeredPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/LayeredPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/LeftTriangleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/LeftTriangleIcon.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/LeftTriangleIconBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/LeftTriangleIconBlack.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/MIMPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/MIMPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/MIMPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/MIMPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/MIMPieChartDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/MIMPieChartDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/OthersPart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/OthersPart1.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/OthersPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/OthersPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/OthersPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/OthersPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/PaddedPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/PaddedPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/PaddedPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/PaddedPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/PermanentScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/PermanentScroller.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/PermanentScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/PermanentScroller.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/PieBubble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/PieBubble.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/PieBubble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/PieBubble.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/RightTriangleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/RightTriangleIcon.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/RightTriangleIconBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/RightTriangleIconBlack.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/ScrollViewSubClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/ScrollViewSubClass.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/ScrollViewSubClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/ScrollViewSubClass.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/SectionedPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/SectionedPieChart.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/SectionedPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/SectionedPieChart.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/layeredpiechart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/layeredpiechart.jpg -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/otherspart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/otherspart2.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/padded_pie_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/padded_pie_chart.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/pie_pop_over_gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/pie_pop_over_gradient.jpg -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/sectioned_pie_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/sectioned_pie_chart.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Pie Chart/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Pie Chart/trophy.png -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Range Chart/MIMLongRangeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Range Chart/MIMLongRangeGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Range Chart/MIMLongRangeGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Range Chart/MIMLongRangeGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Range Chart/MIMRangeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Range Chart/MIMRangeGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Range Chart/MIMRangeGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Range Chart/MIMRangeGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Range Chart/RangeGraphDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Range Chart/RangeGraphDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Wall Graph/MIMWallGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Wall Graph/MIMWallGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Wall Graph/MIMWallGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Wall Graph/MIMWallGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Wall Graph/MultiWallLongGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Wall Graph/MultiWallLongGraph.h -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Wall Graph/MultiWallLongGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Wall Graph/MultiWallLongGraph.m -------------------------------------------------------------------------------- /MIMChartLib/Lib Files/Wall Graph/WallGraphDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/Lib Files/Wall Graph/WallGraphDelegate.h -------------------------------------------------------------------------------- /MIMChartLib/MIMChartLib-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/MIMChartLib-Info.plist -------------------------------------------------------------------------------- /MIMChartLib/MIMChartLib-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/MIMChartLib-Prefix.pch -------------------------------------------------------------------------------- /MIMChartLib/MainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/MainController.h -------------------------------------------------------------------------------- /MIMChartLib/MainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/MainController.m -------------------------------------------------------------------------------- /MIMChartLib/MainController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/MainController.xib -------------------------------------------------------------------------------- /MIMChartLib/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MIMChartLib/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/MIMChartLib/main.m -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReetuBok/MIMChart-Library/HEAD/README --------------------------------------------------------------------------------