Reader small image

You're reading from  SwiftUI Cookbook - Third Edition

Product typeBook
Published inDec 2023
Reading LevelIntermediate
PublisherPackt
ISBN-139781805121732
Edition3rd Edition
Languages
Tools
Concepts
Right arrow
Author (1)
Juan C. Catalan
Juan C. Catalan
author image
Juan C. Catalan

Juan C. Catalan is a software engineer with more than 18 years of professional experience. He started mobile development back in the days of iOS 3. Juan has worked as a professional iOS developer in many industries, including medical devices, financial services, real estate, document management, fleet tracking and industrial automation. He has contributed to more than 30 published apps in the App Store, some of them with millions of users. Juan gives back to the iOS development community with technical talks, mentoring developers, reviewing technical books and now as a book author. He lives in Austin, Texas, with his wife Donna, where they spend time with their kids.
Read more about Juan C. Catalan

Right arrow

Understanding the basics of Swift Charts

In this recipe, we are going to introduce the basic building blocks of Swift Charts. We will create some charts to display the results of a hypothetical survey, conducted with a questionnaire, in a graphical way. We will start with a simple chart displaying the number of answers for each question, and then add a couple of detailed charts, to see the different answers to each question.

Getting ready

Create a new SwiftUI iOS app named SwiftChartsBasics.

How to do it…

Our app will have just one view, which will include the charts. We will also have a data layer in a separate file. Let’s start working on the data first, and then switch to the view. These are the steps:

  1. Create a new Swift file named SurveyEntry.swift. This file will contain our data layer. Start by creating a couple of String enumerations with implicitly assigned raw values, one to model our questions and one to model the answers: ...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
SwiftUI Cookbook - Third Edition
Published in: Dec 2023Publisher: PacktISBN-13: 9781805121732

Author (1)

author image
Juan C. Catalan

Juan C. Catalan is a software engineer with more than 18 years of professional experience. He started mobile development back in the days of iOS 3. Juan has worked as a professional iOS developer in many industries, including medical devices, financial services, real estate, document management, fleet tracking and industrial automation. He has contributed to more than 30 published apps in the App Store, some of them with millions of users. Juan gives back to the iOS development community with technical talks, mentoring developers, reviewing technical books and now as a book author. He lives in Austin, Texas, with his wife Donna, where they spend time with their kids.
Read more about Juan C. Catalan