From 321f3a49ce5c52c3b2a11d34fe6d3e640d6724a1 Mon Sep 17 00:00:00 2001 From: Brian Peiris Date: Thu, 25 Apr 2013 23:45:32 -0300 Subject: [PATCH] Add link to API.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e5b922a..4de7bde 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,9 @@ $.plot($("#placeholder"), data, options); Here, data is an array of data series and options is an object with settings if you want to customize the plot. Take a look at the -examples for some ideas of what to put in or look at the reference -in the file `API.txt`. Here's a quick example that'll draw a line from -(0, 0) to (1, 1): +examples for some ideas of what to put in or look at the +[API reference](API.md). Here's a quick example that'll draw a line +from (0, 0) to (1, 1): ```js $.plot($("#placeholder"), [ [[0, 0], [1, 1]] ], { yaxis: { max: 1 } });