您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

trends_regions.md 723 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ## Plotting Trends
  2. Line charts a great to show trends data. Given that such data usually involves a large number of data points. Changing some properties of a default line chart can reduce clutter.
  3. The X axis is a continuous (usually time) axis.
  4. ## Data points
  5. For a homomorphic to plot
  6. Or you could just choose to show only the dots instead
  7. ## Region Chart
  8. Or a more subtle way to show gradation of values.
  9. ## Combinations
  10. ```js
  11. lineOptions: {
  12. dotSize: 8 // default: 4
  13. },
  14. ```
  15. Here's a demo using different combinations of the line options.
  16. <div class="demo" id="line-trends-region-toggle"></div>
  17. Next up, we'll play around with more than one datasets play out in charts.