diff --git a/docs/00-Getting-Started.md b/docs/00-Getting-Started.md
index a6ed5f063..5fe292784 100644
--- a/docs/00-Getting-Started.md
+++ b/docs/00-Getting-Started.md
@@ -36,7 +36,7 @@ npm install Chart.js --save
https://cdnjs.com/libraries/chart.js
-###Creating a chart
+###Creating a Chart
To create a chart, we need to instantiate the `Chart` class. To do this, we need to pass in the node, jQuery instance, or 2d context of the canvas of where we want to draw the chart. Here's an example.
@@ -53,31 +53,36 @@ var ctx = $("#myChart");
Once you have the element or context, you're ready to instantiate a pre-defined chart-type or create your own!
-The following example instantiates a the pre-defined Polar Area chart type with a config object of data and options.
-```javascript
-var myNewChart = Chart.PolarArea(ctx, {
- data: data,
- options: options
-});
-```
+The following example instantiates a bar chart showing the number of votes for different colors and the y-axis starting at 0.
-To create a scatter chart, which is a special configuration of a line chart, we use the following.
-```javascript
-var myScatterChart = Chart.Scatter(ctx, {
- data: data,
- options: options
-});
-```
-
-Alternatively, we can use the more advanced API to create simple or advanced chart types. In the example below, we are creating a line chart.
-```javascript
+```html
+
+
```
+It's that easy to get started using Chart.js! From here you can explore the many options that can help you customise your charts with scales, tooltips, labels, colors, custom actions, and much more.
+
###Global chart configuration
This concept was introduced in Chart.js 1.0 to keep configuration DRY, and allow for changing options globally across chart types, avoiding the need to specify options for each instance, or the default for a particular chart type.
diff --git a/docs/01-Scales.md b/docs/01-Scales.md
index 292fa43f4..04fa5ec4c 100644
--- a/docs/01-Scales.md
+++ b/docs/01-Scales.md
@@ -44,6 +44,8 @@ ticks | Array | | Settings for the ticks along the axis.
*ticks*.padding | Number | 10 |
*ticks*.reverse | Boolean | false |
*ticks*.show | Boolean | true |
+*ticks*.suggestedMin | Number | - | User defined minimum number for the scale, overrides minimum value *except for if* it is higher than the minimum value.
+*ticks*.suggestedMax | Number | - | User defined maximum number for the scale, overrides maximum value *except for if* it is lower than the maximum value.
*ticks*.callback | Function | `function(value) { return '' + value; } ` |
The `userCallback` method may be used for advanced tick customization. The following callback would display every label in scientific notation