├── LICENSE ├── README.md ├── TestSwiftCharts.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── jknlsn.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── TestSwiftCharts ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Chart.swift ├── ContentView.swift ├── Data.swift ├── MinimalChart.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── TestSwiftCharts.entitlements └── TestSwiftChartsApp.swift └── screenshot.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/README.md -------------------------------------------------------------------------------- /TestSwiftCharts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestSwiftCharts.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TestSwiftCharts.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TestSwiftCharts.xcodeproj/xcuserdata/jknlsn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts.xcodeproj/xcuserdata/jknlsn.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TestSwiftCharts/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TestSwiftCharts/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestSwiftCharts/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TestSwiftCharts/Chart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/Chart.swift -------------------------------------------------------------------------------- /TestSwiftCharts/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/ContentView.swift -------------------------------------------------------------------------------- /TestSwiftCharts/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/Data.swift -------------------------------------------------------------------------------- /TestSwiftCharts/MinimalChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/MinimalChart.swift -------------------------------------------------------------------------------- /TestSwiftCharts/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TestSwiftCharts/TestSwiftCharts.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/TestSwiftCharts.entitlements -------------------------------------------------------------------------------- /TestSwiftCharts/TestSwiftChartsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/TestSwiftCharts/TestSwiftChartsApp.swift -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jknlsn/MultipleDataSetSwiftChartsExample/HEAD/screenshot.jpg --------------------------------------------------------------------------------