Book Image

D3.js By Example

By : Michael Heydt
Book Image

D3.js By Example

By: Michael Heydt

Overview of this book

<p>This book will take you through all the concepts of D3.js starting with the most basic ones and progressively building on them in each chapter to expand your knowledge of D3.js.</p> <p>Starting with obtaining D3.js and creating simple data bindings to non-graphical HTML elements, you will then master the creation of graphical elements from data. You’ll discover how to combine those elements into simple visualizations such as bar, line, and scatter charts, as well as more elaborate visualizations such as network diagrams, Sankey diagrams, maps, and choreopleths.</p> <p>Using practical examples provided, you will quickly get to grips with the features of D3.js and use this learning to create your own spectacular data visualizations with D3.js.</p>
Table of Contents (20 chapters)
D3.js By Example
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
5
Using Data and Scales
Index

The basic shapes provided by SVG


Having some preliminaries out of the way, let's now examine the various SVG shapes that we will commonly use through the book. We have already seen how to create a circle; now let's look at some other shapes.

Ellipse

A circle is a special case of an ellipse that has an identical x and y radii. Ellipses can and often have different size radii. An ellipse is specified in SVG using the <ellipse> tag. We still use cx and cy attributes to position the ellipse, but instead of using r for radius, we use two attributes rx and ry to specify the radius in the x and y directions:

<ellipse cx="50" cy="30" rx="40" ry="20" />

Note

bl.ock (3.4): http://goo.gl/05QCnG

Rectangle

Rectangles are specified using the <rect> tag. The upper-left corner is specified using the x and y attributes. The width and height attributes specify those respective sizes for the rectangle:

<rect x="10" y="10" width="150" height="100"></rect>

Note

bl.ock (3.5): http://goo.gl...