evantianx / Bloooooooog

Place to record what I thought and learned
0 stars 0 forks source link

AnyChart 学习笔记 #47

Open evantianx opened 7 years ago

evantianx commented 7 years ago

参考文章:

Getting Started with AnyChart — 10 Practical Examples How to Create Interactive JavaScript Charts from Custom Data Sets

AnyChart作为一个 JS 图表框架,具有如下三个优点:

Introducing GraphicsJS, a Powerful Lightweight Graphics Library

evantianx commented 7 years ago

快速上手

<html lang="en">
  <head>
    <meta charset="utf-8" />
    <style>
      html, body, #container {
        width: 100%;
        height: 100%;
      }
    </style>
    <title>AnyChart Basic Example</title>
  </head>
  <body>
    <div id="container"></div>

    <script src="https://cdn.anychart.com/js/latest/anychart-bundle.min.js"></script>
    <script>
      // AnyChart code here
    </script>
  </body>
</html>