diff --git a/public/docs/dart/latest/guide/displaying-data-example1.png b/public/docs/dart/latest/guide/displaying-data-example1.png
index d0f02a6464..c5e2c15114 100644
Binary files a/public/docs/dart/latest/guide/displaying-data-example1.png and b/public/docs/dart/latest/guide/displaying-data-example1.png differ
diff --git a/public/docs/dart/latest/guide/displaying-data.jade b/public/docs/dart/latest/guide/displaying-data.jade
index 4ecd499272..76021c1111 100644
--- a/public/docs/dart/latest/guide/displaying-data.jade
+++ b/public/docs/dart/latest/guide/displaying-data.jade
@@ -1,75 +1,117 @@
.l-main-section
p.
- Displaying data is job number one for any good application. In Angular, you bind data to elements in HTML
- templates and Angular automatically updates the UI as data changes.
+ Displaying data is job number one for any good application.
+ In Angular, you bind data to elements in HTML
+ templates, and Angular automatically updates the UI as data changes.
p.
- Let's walk through how we'd display a property, a list of properties, and then conditionally show content
+ Let's walk through how to display a property and a list of properties,
+ and then to conditionally show content
based on state.
p.
- We'll end up with a UI that looks like this:
+ The final UI looks like this:
figure.image-display
img(src='displaying-data-example1.png')
.l-main-section
- h2#section-create-an-entry-point Create an entry point
+ h2#section-create-an-entry-point Create entry points and pubspec
- p Open your favorite editor and create a show-properties.html
file with the content:
- pre.prettyprint.lang-html
+ p.
+ Open your favorite editor and create a directory with
+ a web/main.dart
file,
+ a web/index.html
file, and
+ a pubspec.yaml
file:
+
+ .code-box
+ pre.prettyprint.lang-dart(data-name="dart")
code.
- //show-properties.html
- <display></display>
- p
- | The <display>
component here acts as the site where you'll insert your application.
- | We'll assume a structure like this for the rest of the examples here and just focus on the parts that
- | are different.
+ // web/main.dart
+ library displaying_data;
+
+ import 'package:angular2/angular2.dart';
+ import 'package:angular2/src/reflection/reflection.dart' show reflector;
+ import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities;
+
+ part 'show_properties.dart';
+
+ main() {
+ reflector.reflectionCapabilities = new ReflectionCapabilities();
+ bootstrap(DisplayComponent);
+ }
+ pre.prettyprint.lang-html(data-name="html")
+ code.
+ <!-- web/index.html -->
+ <!DOCTYPE html>
+ <html>
+ <head>
+ <link rel="stylesheet" href="style.css">
+ </head>
+ <body>
+
+ <display></display>
+
+ <script type="application/dart" src="main.dart"></script>
+ <script src="packages/browser/dart.js"></script>
+ </body>
+ </html>
+ pre.prettyprint.lang-yaml(data-name="yaml")
+ code.
+ # pubspec.yaml
+ name: displaying_data
+ description: Dart version of Angular 2 example, Displaying Data
+ version: 0.0.1
+ dependencies:
+ angular2: 2.0.0-alpha.20
+ browser: any
+
+ p.
+ All of this code should look familiar from the previous page,
+ except for the library
and part
statements
+ in main.dart
.
+ Those statements let you implement part of the app in a different Dart file.
+ All three of these files remain similar in the rest of the examples,
+ so we'll just focus on what's different.
.l-main-section
h2#section-showing-properties-with-interpolation Showing properties with interpolation
- p.text-body
- | The simple method for binding text into templates is through interpolation where you put the name of a property
- | inside {{ }}.
-
- p To see this working, create another file, show-properties.dart
, and add the following:
-
- pre.prettyprint.linenums.lang-javascript
- code.
- // Dart
- part of displaying_data;
-
- @Component(
- selector: 'display'
- )
-
- @View(
- template: '''
- <p>My name: {{ myName }}</p>
- '''
- )
- class DisplayComponent {
- String myName = 'Alice';
- }
+ p.
+ The simple method for binding text into templates is through interpolation,
+ where you put the name of a property
+ inside {{ }}.
p.
- You've just defined a component that encompases a view and controller for the app. The view
- defines a template:
+ To see this working, create a Dart file under web
+ named show_properties.dart
,
+ and add the following:
+
+ pre.prettyprint.lang-dart
+ code.
+ // web/show_properties.dart
+ part of displaying_data;
+
+ @Component(
+ selector: 'display'
+ )
+ @View(
+ template: '''
+ <p>My name: {{ myName }}</p>
+ '''
+ )
+ class DisplayComponent {
+ String myName = 'Alice';
+ }
+
+ p.
+ You've just defined a component that encompasses a view and controller for the app. The view
+ defines a template:
+
pre.prettyprint.lang-html
- code.
- <p>My name: {{ myName }}</p>
+ code.
+ <p>My name: {{ myName }}</p>
p.
- Angular will automatically pull the value of myName
and insert it into the browser and
- update it whenever it changes without work on your part.
-
- p.
- One thing to notice here is that though you've written your DisplayComponent
class, you haven't
- called new to create one anywhere. By associating your class with elements named 'display' in
- the DOM, Angular knows to automatically call new on DisplayComponent
and bind its properties to
- that part of the template.
-
- p.
- When you're building templates, data bindings like these have access to the same scope of
- properties as your controller class does. Here, your class is the DisplayComponent
that has
- just one property, myName.
+ Angular will automatically pull the value of myName
and
+ insert it into the browser,
+ automatically updating it whenever it changes.
.callout.is-helpful
header Note
@@ -77,18 +119,34 @@
While you've used template:
to specify an inline view, for larger templates you'd
want to move them to a separate file and load them with templateUrl:
instead.
- p So you can see Angular dynamically update content, add a line after
-
- pre.prettyprint.lang-html
- code.
- <p>My name: {{ myName }}</p>
- p to this:
- pre.prettyprint.lang-html
- code.
- <p>Current time: {{ time }}</p>
p.
- Then give the DisplayComponent
a starting value for time and a call to update time
- via setInterval
.
+ One thing to notice is that although you've written
+ your DisplayComponent
class, you haven't
+ used new
to instantiate it.
+ Because your class is associated with <display>
elements in
+ the DOM, Angular automatically calls new
on
+ DisplayComponent
and bind its properties to
+ that part of the template.
+
+ p.
+ When you're building templates, data bindings like these have access to
+ the same scope of
+ properties as your controller class does.
+ Here your class is DisplayComponent
, which has
+ just one property, myName
.
+
+ p.
+ Add a second line to the template,
+ so you can see Angular dynamically update content:
+
+ pre.prettyprint.lang-html
+ code.
+ <p>Current time: {{ time }}</p>
+
+ p.
+ Then give the DisplayComponent
a starting value for time and
+ a call to update time
+ via setInterval
:
pre.prettyprint.lang-dart
code.
@@ -107,43 +165,50 @@
}
}
- p Reload the page in your browser and you'll now see the seconds updating automatically.
+ p Reload the app, and you'll now see the seconds updating automatically.
.l-main-section
- h2#Create-an-array Create an array property and use For on the view
- p Moving up from a single property, create an array to display as a list.
+ h2#Create-an-array Display an iterable using *for
+ p Moving up from a single value, create a property that's a list of values.
pre.prettyprint.lang-dart
code.
class DisplayComponent {
String myName = 'Alice';
List<String> friendNames = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai'];
- ...
}
p.
- You can then use this array in your template with the for
directive to create copies of DOM elements
- with one for each item in the array.
+ You can then use this list in your template with the for
directive to create copies of DOM elements
+ with one for each item in the list.
+
pre.prettyprint.lang-dart
code.
- //Dart
- template: '''
- <p>My name: {{ myName }}</p>
- <p>Friends:</p>
- <ul>
- <li *for="#name of friendNames">
+ @View(
+ template: '''
+ <p>My name: {{ myName }}</p>
+ <p>Friends:</p>
+ <ul>
+ <li *for="#name of friendNames">
{{ name }}
- </li>
- </ul>
- ''',
-
+ </li>
+ </ul>
+ '''
+ )
p.
- To make this work, you'll also need to add the angular.For
directive used by
- the template to show_properties.dart
so that Angular knows to include it:
+ To make this work, you'll also need to add the Angular For
directive used by
+ the template to show_properties.dart
, so that Angular knows to include it.
+ Add For
using the optional directives
parameter,
+ which contains a list of directives:
pre.prettyprint.lang-dart
code.
- directives: const[For]
+ @View(
+ template: '''
+ // ...HTML...
+ ''',
+ directives: const[For]
+ )
p Reload and you've got your list of friends!
p.
@@ -162,47 +227,101 @@
p The way to read this is:
ul
li.
- *for
: create a DOM element for each item in an
+ *for
: Create a DOM element for each item in an
iterable
- like an array
- li #name
: refer to individual values of the iterable as 'name'
- li of friendNames
: the iterable to use is called 'friendNames' in the current controller
+ such as a list.
+ li #name
: Refer to individual values of the iterable as name
.
+ li of friendNames
: The iterable to use is called friendNames
in the current controller.
p Using this syntax, you can build UI lists from any iterable object.
.l-main-section
- h2#Create-a-class Create a class for the array property and inject into component
+ h2#Create-a-class Create a model and inject it
p.
- Before we get too much further, we should mention that putting our model (array) directly in our controller isn't
+ Before we get too much further, we should mention that putting the model (list) directly into the controller isn't
proper form. We should separate the concerns by having another class serve the role of model and inject it into
the controller.
p.
- Make a FriendsService
class to provide the model with the list of friends. We'll put this in a new
- friends_service.dart
under web/
, and add part friends_service.dart
- to main.dart
. Here's what the class looks like:
+ Make a FriendsService
class to implement a model containing a list of friends. We'll put this in a new
+ friends_service.dart
under web/
. Here's what the class looks like:
pre.prettyprint.lang-dart
code.
+ // web/friends_service.dart
part of displaying_data;
class FriendsService {
List<String> friendNames = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai'];
}
+ .callout.is-helpful
+ header Note
+ p.
+ Remember to tie friends_service.dart
into the library's main file:
+ add part friends_service.dart
to main.dart
.
p.
- Replace the current list of friends in DisplayComponent by passing in the FriendsService and setting the list of
- names in DisplayComponent to the names provided by the service you passed in.
+ Now you can replace the current list of friends in DisplayComponent.
+ First add a FriendsService parameter to the constructor.
+ Then set friendNames
to the names provided by the service.
pre.prettyprint.lang-dart
code.
- DisplayComponent(FriendsService friendsService) {
- friendNames = friendsService.names;
+ // In web/show_properties.dart
+ class DisplayComponent {
+ String myName = 'Alice';
+ List friendNames;
+
+ DisplayComponent(FriendsService friendsService) {
+ friendNames = friendsService.names;
+ }
}
- p And then make FriendsService available to dependency injection
+
+ p.
+ Next, make FriendsService available to dependency injection
+ by adding an injectables
parameter to DisplayComponent's
+ @Component
annotation:
pre.prettyprint.lang-dart
code.
+ @Component(
+ selector: 'display',
+ injectables: const[FriendsService]
+ )
+
+.l-main-section
+ h2#Conditionally-displaying-data-with-If Conditionally display data using *if
+ p.
+ Lastly, before we move on, let's handle showing parts of our UI conditionally with *if
. The
+ If
directive adds or removes elements from the DOM based on the expression you provide.
+
+ p See it in action by adding a paragraph at the end of your template:
+
+ pre.prettyprint.lang-html
+ code.
+ <p *if="names.length > 3">You have many friends!</p>
+
+ p.
+ Also add If
to the list of directives,
+ so Angular knows to include it:
+
+ pre.prettyprint.lang-dart
+ code.
+ directives: const[For, If]
+ p.
+ The list current has 5 items, so if you run the app you'll see the message
+ congratulating you on your many friends.
+ Remove two items from the list, reload your browser,
+ and see that the message no longer displays.
+
+
+ p Here's the final code.
+
+ .code-box
+ pre.prettyprint.lang-dart(data-name="show_properties.dart")
+ code.
+ // web/show_properties.dart
part of displaying_data;
@Component(
@@ -210,95 +329,120 @@
injectables: const[FriendsService]
)
@View(
- template: '''
- <p>My name: {{ myName }}</p>
- <p>Friends:</p>
- <ul>
- <li *for="#name of friendNames">
- {{ name }}
- </li>
- </ul>
+ template: '''
+ <p>My name: {{ myName }}</p>
+ <p>Friends:</p>
+ <ul>
+ <li *for="#name of friendNames">
+ {{ name }}
+ </li>
+ </ul>
''',
directives: const[For]
)
-
class DisplayComponent {
String myName = 'Alice';
- List<String> friendNames;
+ List<String> friendNames;
DisplayComponent(FriendsService friendsService) {
friendNames = friendsService.names;
}
}
-
-.l-main-section
- h2#Conditionally-displaying-data-with-If Conditionally displaying data with If
- p.
- Lastly, before we move on, let's handle showing parts of our UI conditionally with If
. The
- If
directive adds or removes elements from the DOM based on the expression you provide.
-
- p See it in action by adding a paragraph at the end of your template
-
- pre.prettyprint.lang-html
- code.
- <p *if="names.length > 3">You have many friends!</p>
-
- p You'll also need to add the If directive so Angular knows to include it.
-
- pre.prettyprint.lang-dart
+ pre.prettyprint.lang-dart(data-name="friends_service.dart")
code.
- directives: const[For, If]
- p.
- As there are currently 5 items it the list, you'll see the message congratulating you on your many friends.
- Remove two items from the list, reload your browser, and see that the message no longer displays.
+ // web/friends_service.dart
+ part of displaying_data;
- p Here's our final show_properties.dart
+ class FriendsService {
+ List<String> names = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai'];
+ }
+ pre.prettyprint.lang-dart(data-name="main.dart")
+ code.
+ // web/main.dart
+ library displaying_data;
- pre.prettyprint.lang-dart
- code.
- part of displaying_data;
+ import 'dart:async';
- @Component(
- selector: 'display',
- injectables: const[FriendsService]
- )
- @View(
- template: '''
- <p>My name: {{ myName }}</p>
- <p>Friends:</p>
- <ul>
- <li *for="#name of friendNames">
- {{ name }}
- </li>
- </ul>
- <p *if="friendNames.length > 3">You have many friends!</p>
- ''',
- directives: const[For, If]
- )
- class DisplayComponent {
- String myName = 'Alice';
- List<String> friendNames;
- DisplayComponent(FriendsService friendsService) {
- friendNames = friendsService.names;
- }
- }
+ import 'package:angular2/angular2.dart';
+ import 'package:angular2/src/reflection/reflection.dart' show reflector;
+ import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities;
- p And the accompanying main.dart
:
+ part 'show_properties.dart';
+ part 'friends_service.dart';
- pre.prettyprint.lang-dart
- code.
- library displaying_data;
+ main() {
+ reflector.reflectionCapabilities = new ReflectionCapabilities();
+ bootstrap(DisplayComponent);
+ }
+ pre.prettyprint.lang-html(data-name="html")
+ code.
+ <!-- web/index.html -->
+ <!DOCTYPE html>
+ <html>
+ <head>
+ <link rel="stylesheet" href="style.css">
+ </head>
+ <body>
- import 'dart:async';
+ <display></display>
- import 'package:angular2/angular2.dart';
- import 'package:angular2/src/reflection/reflection.dart' show reflector;
- import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities;
+ <script type="application/dart" src="main.dart"></script>
+ <script src="packages/browser/dart.js"></script>
+ </body>
+ </html>
+ pre.prettyprint.lang-yaml(data-name="yaml")
+ code.
+ # pubspec.yaml
+ name: displaying_data
+ description: Dart version of Angular 2 example, Displaying Data
+ version: 0.0.1
+ dependencies:
+ angular2: 2.0.0-alpha.20
+ browser: any
+.l-main-section
+ h2#section-explanations Explanations
- part 'show_properties.dart';
- part 'friends_service.dart';
+ .l-sub-section
+ h3 Using multiple Dart files in an Angular app
- main() {
- reflector.reflectionCapabilities = new ReflectionCapabilities();
- bootstrap(DisplayComponent);
- }
\ No newline at end of file
+ p.
+ Dart offers a few ways to implement an app in multiple files.
+ In this guide, all the code for each example is in a single library;
+ each Dart file under web
is part of that library.
+
+ p.
+ To let the code in main.dart
+ use the code in show_properties.dart
,
+ declare a library in main.dart
.
+ Then make show_properties.dart
part of that library.
+
+ .code-box
+ pre.prettyprint.lang-dart(data-name="main library file")
+ code.
+ // web/main.dart
+ library displaying_data;
+ // imports...
+ part 'show_properties.dart';
+ // Code goes here...
+ pre.prettyprint.lang-dart(data-name="additional library file")
+ code.
+ // web/show_properties.dart
+ part of displaying_data;
+ // Code goes here...
+
+ p.
+ Another way to split Dart code is to
+ define multiple libraries in a single package.
+ The additional libraries go under a lib
directory
+ parallel to web
.
+
+
+ p.
+ Yet another approach, often used when some of the code is highly reusable,
+ is to split the code into libraries in two or more packages.
+
+ p.
+ For more information on implementing Dart libraries, see
+ Libraries and visibility
+ in the
+ Dart language tour.
diff --git a/public/docs/dart/latest/guide/setup.jade b/public/docs/dart/latest/guide/setup.jade
index 70d3aa4a81..448645a201 100644
--- a/public/docs/dart/latest/guide/setup.jade
+++ b/public/docs/dart/latest/guide/setup.jade
@@ -1,69 +1,59 @@
.l-main-section
- h2#section-install Install Angular
- p There are four steps to create any Angular app:
- ol
- li Create an entry point HTML file where users will start
- li Load the Angular library at the top of the file
- li Make a root component for your application
- li Bootstrap Angular
p.
- Dart makes dependencies available to the application through the pubspec.yaml
file.
- To use Angular2 in your app, include angular as a dependency. Here’s the minimal
- pubspec.yaml
file for this sample:
+ As long as you already
+ have the Dart SDK,
+ getting started with Angular 2 is simple:
- pre.prettyprint.lang-dart
+ ol
+ li Depend on the angular2 pub package.
+ li Create a Dart file that defines (directly or indirectly) a
+ root component and bootstraps Angular.
+ li Create an HTML file that uses the root component and points to the Dart file
+
+ p.
+ You can use whichever editor or IDE you like,
+ or just use the command-line tools that the Dart SDK provides.
+ See Dart Tools
+ for more information.
+
+
+ h2#section-install Depend on angular2
+
+ p.
+ To use Angular2 in your app, include angular2 as a dependency in
+ your app's pubspec.yaml file. For example:
+
+ pre.prettyprint.lang-yaml
code.
+ # pubspec.yaml
name: getting_started
description: Dart version of Angular 2 example, Getting Started
version: 0.0.1
dependencies:
angular2: 2.0.0-alpha.20
browser: any
-
p.
- The Dart Editor automatically downloads the packages your app depends on, along with any packages that they, in
- turn, depend on. If this download fails or you like using the command line, you can explicitly install packages.
- From Dart Editor, you can use Tools > Pub Get. From the command line (in the root directory of
- your app, assuming the Dart SDK is in your path), you can run pub get
.
-
-.l-main-section
- h2#section-create-an-entry-point Create an entry point
- p.
- In the web/
directory for your app, create an index.html
file and add the Angular library
- tags and a main.dart
file where you'll build your first component.
-
- p.
- In the <body>
, add an element called <my-app>
that will be the root of your
- application.
-
- pre.prettyprint.lang-html
- code.
- //index.html
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <my-app></my-app>
- <script type="application/dart" src="main.dart"></script>
- <script src="packages/browser/dart.js"></script>
- </body>
- </html>
+ Run pub get to download the packages your app depends on.
+ (Dart-savvy editors and IDEs
+ typically run pub get
for you.)
.l-main-section
- h2#section-set-up-the-starting-component Set up the starting component
+ h2#section-set-up-the-starting-component Write the Dart code
p.
- In main.dart
, create a class called AppComponent
, configure it to bind to the
- <my-app>
element in index.html
, and call Angular's bootstrap()
to kick
- it all off like this:
+ Next to your pubspec.yaml
file,
+ create a web
subdirectory containing a Dart file
+ (main.dart
).
+ Edit main.dart
, adding a component class (AppComponent),
+ configuring it to bind to the <my-app>
element,
+ and creating a top-level main()
function that calls
+ Angular's bootstrap()
function.
pre.prettyprint.lang-dart
code.
- //main.dart
+ // web/main.dart
import 'package:angular2/angular2.dart';
import 'package:angular2/src/reflection/reflection.dart' show reflector;
import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities;
@@ -83,13 +73,59 @@
}
.l-main-section
- h2#section-run-it Run it!
+ h2#section-create-an-entry-point Create an HTML file
+ p.
+ In the web/
directoryapp, create an HTML file (index.html
).
+ Edit index.html
to add a <my-app>
element
+ and call main.dart
.
+
+ pre.prettyprint.lang-html
+ code.
+ <!-- web/index.html -->
+ <!DOCTYPE html>
+ <html>
+ <head>
+ <link rel="stylesheet" href="style.css">
+ </head>
+ <body>
+ <my-app></my-app>
+ <script type="application/dart" src="main.dart"></script>
+ <script src="packages/browser/dart.js"></script>
+ </body>
+ </html>
+
+.l-main-section
+ h2#section-run-it Run the app!
p.
- Now run the app. In Dart Editor’s Files view, select index.html
, right-click, and choose Run
- in Dartium.
+ Now run the app. How you do this depends on your tools.
+
+ ul
+ li.
+ If you're using Dart Editor,
+ right-click web/index.html,
+ and choose Open in Dartium.
+ This starts a web server
+ and opens your app in Dartium,
+ an experimental version of the Chromium browser that contains the Dart VM.
+
+ li.
+ If you're using WebStorm or IntelliJ IDEA,
+ right-click web/index.html,
+ and choose Run 'index.html'.
+
+ li.
+ If you're using the command line and don't have Dartium,
+ serve the app using pub serve
,
+ and then run it by visiting http://localhost:8080 in a browser.
+ Generating the JavaScript takes a few seconds when you first visit the page,
+ and the generated JavaScript is currently large.
+ The generated JavaScript will be smaller once
+ Angular's transformer becomes available.
+
+ p.
+ You should see something like this:
- You should see:
div(align='center')
img(src='setup-example1.png')
@@ -98,21 +134,48 @@
p This basic Angular app contains the structure for any app you'll build.
- p.
- You can think of Angular apps as a tree of components. This root component we've been talking about acts as the top
- level container for the rest of your application. You've named this one AppComponent
, but there's
- nothing special about the name and you can use whatever makes sense to you.
+ .l-sub-section
+ h3 It's all a tree
+
+ p.
+ You can think of an Angular app as a tree of components.
+ The root component acts as the top-level container for the rest of your application.
+ You've named this one AppComponent
, but there's
+ nothing special about the name; you can use whatever makes sense to you.
+
+ p.
+ The root component's job is to give a location in the HTML file where
+ your application can
+ render through its element—in this case, <my-app>
.
+ There's nothing special about the HTML filename or the element name;
+ you can pick whatever you like.
+
+ p.
+ The root component loads the initial template for the application,
+ which loads other components to perform
+ whatever functions your application needs—menu bars, views, forms, and so on.
+ We'll walk through examples of all of
+ these in the following pages.
+
+ .l-sub-section
+ h3 @Component and @View annotations
+
+ p.
+ A component annotation describes details about the component.
+ An annotation can be identified by its at-sign (@
).
+ p.
+ The @Component
annotation defines the HTML tag for
+ the component by specifying the component's CSS selector.
+ p.
+ The @View
annotation defines the HTML that
+ represents the component.
+ The component you wrote uses an inline template,
+ but you can also have an external template.
+ To use an external template,
+ specify a templateUrl
property and
+ give it the path to the HTML file.
+
p.
- The root component's job is to give a location in the index.html
file where your application will
- render through it's element, in this case <my-app>
. There is also nothing special about this
- element name and you can pick it as you like.
-
- p.
- The root component loads the initial template for the application that will load other components to perform
- whatever functions your application needs - menu bars, views, forms, etc. We'll walk through examples of all of
- these in the following pages.
-
- p Exciting! Not excited yet? Let's move on to Displaying Data.
-
-
+ Exciting! Not excited yet?
+ Let's move on to Displaying Data.