Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. AmCharts.makeChart("chartdiv",
  2. {
  3. "type": "serial",
  4. "categoryField": "time",
  5. "startDuration": 1,
  6. "categoryAxis": {
  7. "gridPosition": "start"
  8. },
  9. "trendLines": [],
  10. "graphs": [
  11. {
  12. "balloonText": "open:[[open]] close:[[close]]",
  13. "closeField": "max_turn",
  14. "fillAlphas": 1,
  15. "id": "AmGraph-1",
  16. "openField": "max_turn_norma",
  17. "title": "graph 1",
  18. "type": "column"
  19. },
  20. {
  21. "balloonText": "open:[[open]] close:[[close]]",
  22. "closeField": "min_turn",
  23. "fillAlphas": 1,
  24. "id": "AmGraph-2",
  25. "openField": "min_turn_norma",
  26. "title": "graph 1",
  27. "type": "column"
  28. }
  29. ],
  30. "guides": [],
  31. "valueAxes": [
  32. {
  33. "axisTitleOffset": 10000,
  34. "id": "ValueAxis-1",
  35. "minMaxMultiplier": 0,
  36. "precision": 0,
  37. "radarCategoriesEnabled": false,
  38. "stackType": "regular",
  39. "strictMinMax": true,
  40. "synchronizationMultiplier": 1000,
  41. "title": "Axis title"
  42. }
  43. ],
  44. "allLabels": [],
  45. "balloon": {},
  46. "titles": [
  47. {
  48. "id": "Title-1",
  49. "size": 15,
  50. "text": "Chart Title"
  51. }
  52. ],
  53. "dataProvider": []
  54. }
  55. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement