Create Graphs & Charts in App with Swift 5 (Xcode 12 | 2023)

  Рет қаралды 51,795

iOS Academy

iOS Academy

Күн бұрын

Пікірлер: 68
@iOSAcademy
@iOSAcademy 3 жыл бұрын
Enjoy my teaching style? Learn to build the TikTok App from scratch with my course! ios-academy.teachable.com/p/building-tiktok-for-ios
@kimdaegyum
@kimdaegyum 4 жыл бұрын
I've gotten so used to your style of teaching... and I gotta say you're my go-to youtube swift guy. I know that whenever you have videos on something I am gonna get to where I was wanting to go. Thanks a lot man!
@jaymabiopkeg1983
@jaymabiopkeg1983 3 жыл бұрын
Hello @IOS academy ,your video saved me from days of toiling.Jah Bless Bro.Thanks bigtime
@theevanator9252
@theevanator9252 4 жыл бұрын
Thank you very much. I am currently making my own app and all of your vids have improved it amazingly. Could we also see a follow up vid in the future with the further customizability for the graphs?
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Thank you! And sure, will follow up.
@rendelx
@rendelx 3 жыл бұрын
great video great teaching style
@iOSAcademy
@iOSAcademy 3 жыл бұрын
Thank you!
@yurialenccar
@yurialenccar Жыл бұрын
Huge Thanks!
@iOSAcademy
@iOSAcademy Жыл бұрын
You're welcome!
@gastonpena3
@gastonpena3 8 ай бұрын
Thanks, great tutorial! do you know if there is a way of setting corner radius to each the donut chart sections?
@headach09
@headach09 Жыл бұрын
Thanks for sharing from scrach :)
@iOSAcademy
@iOSAcademy Жыл бұрын
Thanks for watching!
@chrispy104k
@chrispy104k 3 жыл бұрын
Thanks man. Great tutorial.
@ANILKUMAR-vv1fz
@ANILKUMAR-vv1fz 3 жыл бұрын
Nice Video Conent
@sparshgupta3922
@sparshgupta3922 Жыл бұрын
I want to make an AreaMark in swiftui, how would I implement it provided I need zoom and pan functionality in it?
@Bon.80
@Bon.80 4 жыл бұрын
Thanks for doing this
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Your welcome!
@Bon.80
@Bon.80 4 жыл бұрын
I am going to Purdue next year to study UX design so I downloaded x code to get familiar with another programming language and these videos have helped me out a lot. I was curious if you had a Twitter so I can ask u a few questions over direct messages?
@AntonioBrandao
@AntonioBrandao Жыл бұрын
Is it possible to have custom tap handlers on the individual parts of the pie chart?
@dipenpanara9094
@dipenpanara9094 4 жыл бұрын
Great tutorial
@iOSAcademy
@iOSAcademy 4 жыл бұрын
thanks!
@donl6605
@donl6605 2 жыл бұрын
How would the graph look on a different ios device? What would need to be done to accomplish this for all devices?
@ericklossner6383
@ericklossner6383 4 жыл бұрын
Does the entries.append(BarChartDataEntry(x: x, y: x)) have to conform to Double? If it doesn't, how can we make it conform to another data type?
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Yes, its signature requires a double
@ericklossner6383
@ericklossner6383 4 жыл бұрын
@@iOSAcademy Thank you!
@liangyanyang2091
@liangyanyang2091 4 жыл бұрын
Excellent video! Could you make another tutorial with different more sophisticated types of charts and graphs. How about this idea for further videos as well: animated charts and graphs
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Thanks! And absolutely, subscribe and stay tuned :)
@ahmedmujahad9999
@ahmedmujahad9999 4 жыл бұрын
hey is there any tutorial of your to create custom guages?
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Coming soon!
@introvert9639
@introvert9639 4 жыл бұрын
hi afraz have you tried creating apps without story board
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Yes! I usually don't use storyboards professionally - all code all the time :)
@introvert9639
@introvert9639 4 жыл бұрын
iOS Academy then probably you should create some tutorials without storyboard too
@jurabekismatov9310
@jurabekismatov9310 3 жыл бұрын
super video Love it. also can anyone tell me how to give a label for each bar color
@govind20246
@govind20246 3 жыл бұрын
Can you make video on horizontal bar chart using this same library?
@noamif
@noamif 4 жыл бұрын
Hey mate, Great tutorial again! one question though, how would you recommend persisting the data? userdefaults or using something like realm ?
@iOSAcademy
@iOSAcademy 4 жыл бұрын
thanks - Realm since its heavier data.
@noamif
@noamif 4 жыл бұрын
@@iOSAcademy First of all thanks for the reply, would you mind explaining to me shortly how you'd go about doing that? i've been scouting the net for WEEKS and i simply cannot find a way to save data!
@rand-em6zi
@rand-em6zi 4 жыл бұрын
Can you please suggest how to add axis titles and scale the data for line charts
@iOSAcademy
@iOSAcademy 4 жыл бұрын
There is a x-axis and y-axis property off of the chart that you can set values to
@iphoneultra
@iphoneultra 4 жыл бұрын
hello, I can't find a video on that. can you teach us how to add dynamically user's data (date on x-axis, data on y-axis) and save to UserDefaults? ChartDataEntry date type is confusing for me. subbed..
@alasdaircook6161
@alasdaircook6161 4 жыл бұрын
Once again, great video. Question: Could you please give me a pointer for how I could embed the chart in a collection view? The idea would be to have a collection view of charts and when you tap it it opens up a new VC with the chart filling the screen. Thanks!
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Thanks! You basically need a custom collection cell that has a chart. Add a public interface to configure it with data. Make sure to like and sub!
@alasdaircook6161
@alasdaircook6161 4 жыл бұрын
@@iOSAcademy great, thanks!
@stephenrudolph1064
@stephenrudolph1064 3 жыл бұрын
hi. i’d like to do a line chart but it won’t have a lot of data points. i suppose it’s very complicated to program a smoothing of the line graph as the points are plotted.
@yasindalklc5317
@yasindalklc5317 4 жыл бұрын
please can you explain to us, how can we put x label
@bitsurfer0101
@bitsurfer0101 4 жыл бұрын
If I wanted to create a line chart with two data points (which would be two extremes), how could I draw a line across each axis to them so that I could also get the mid-point. I would also like to have the mid-point highlighted.
@zhijiewang4545
@zhijiewang4545 3 жыл бұрын
Hi, I am using a M1 MacBook, while I can install the podfile using rosetta, I run into problem during building. Does anyone have the same issue?
@reinerwahnsinn4037
@reinerwahnsinn4037 4 жыл бұрын
Am I allowed to use this in apps i want to publish? Do i have to Name somebody When submitting? Who is the owner of this Framework? Thank you
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Yes you can use it! Its open source, take a look at the github page.
@saintplays9874
@saintplays9874 3 жыл бұрын
How i add stroke slices?
@jdcrunchman999
@jdcrunchman999 2 жыл бұрын
Hi signed up to be a Patreon so that I can get access to some of the source code from iOS Academy. When I tried to get into the Patreon account, I am unclear as to how I can get access to the source code. I left you a message in the Patreon section, and urge you to please read it, and reply.
@preetirathore6033
@preetirathore6033 4 жыл бұрын
Can you help me with the stacked bar chart
@iOSAcademy
@iOSAcademy 4 жыл бұрын
What do you need help with?
@meowzart5995
@meowzart5995 4 жыл бұрын
Can u do this in swiftui?
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Yes, coming soon, stay tuned and subscribe
@iphoneultra
@iphoneultra 4 жыл бұрын
@@iOSAcademy hello, I can't find a video on that. can you teach us how to add dynamically user's data (date on x-axis, data on y-axis) and save to UserDefaults? ChartDataEntry date type is confusing for me. subbed..
@alasdaircook6161
@alasdaircook6161 4 жыл бұрын
Hi, how would we add this to an already existing project?
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Just bring in the framework via Cocoapods or some other method and implement it :)
@ericklossner6383
@ericklossner6383 4 жыл бұрын
How would you add timestamp from Firestore, as the data for a barchart?
@ericklossner6383
@ericklossner6383 4 жыл бұрын
Also overall this was an excellent, informative video and I appreciated it a lot!
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Thanks! Id use date formatters
@ericklossner6383
@ericklossner6383 4 жыл бұрын
Thank you! Would I be able to personally contact you in someway? I’m not sure how to use date formatters or what they are 😬
@yuvrajagarkar8942
@yuvrajagarkar8942 3 жыл бұрын
can I have docs for this ? , nice video anyways
@sudianto2069
@sudianto2069 4 жыл бұрын
Let me try your tutor
@iOSAcademy
@iOSAcademy 4 жыл бұрын
Lets do it!
@cortegaph
@cortegaph 4 жыл бұрын
It would have been better if you've prepared the chart data set and just copy/pasting that in your code instead of spending time coding the sample data set.
@timmytim9054
@timmytim9054 3 жыл бұрын
yo if you're going to demonstrate using a third party tool cocaopods, then fucking show how to install charts. Ffs
SwiftUI Bar Chart with Customizations | Swift Charts
21:26
Sean Allen
Рет қаралды 27 М.
Create Sliding Cards in App (Swift 5) Xcode 11 - 2020
16:08
iOS Academy
Рет қаралды 22 М.
كم بصير عمركم عام ٢٠٢٥😍 #shorts #hasanandnour
00:27
hasan and nour shorts
Рет қаралды 11 МЛН
How to Fight a Gross Man 😡
00:19
Alan Chikin Chow
Рет қаралды 20 МЛН
Deadpool family by Tsuriki Show
00:12
Tsuriki Show
Рет қаралды 3,7 МЛН
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 7 МЛН
Changing brackets on bucket from Merlo to JCB
42:01
Snowball Engineering
Рет қаралды 27 М.
Selection and PieCharts in iOS 17
20:57
Stewart Lynch
Рет қаралды 3,3 М.
Advanced Table View in Swift 5 (Xcode 11, 2020) - iOS Beginners
41:04
Introduction to SwiftUI Charts
20:37
azamsharp
Рет қаралды 2,4 М.
How To Create A Chart in SwiftUI (And Use It In UIKit)!
16:27
Martin Lasek
Рет қаралды 3,7 М.
Xcode Tutorial for Beginners - (using the new Xcode 11)
41:10
CodeWithChris
Рет қаралды 500 М.
كم بصير عمركم عام ٢٠٢٥😍 #shorts #hasanandnour
00:27
hasan and nour shorts
Рет қаралды 11 МЛН