charts.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962
  1. {
  2. "active-users-2": {
  3. "type": "line",
  4. "height": 18,
  5. "datetime": true,
  6. "series": [
  7. {
  8. "name": "Mobile",
  9. "color": "primary",
  10. "data": [
  11. 4164,
  12. 4652,
  13. 4817,
  14. 4841,
  15. 4920,
  16. 5439,
  17. 5486,
  18. 5498,
  19. 5512,
  20. 5538,
  21. 5841,
  22. 5877,
  23. 6086,
  24. 6146,
  25. 6199,
  26. 6431,
  27. 6704,
  28. 7939,
  29. 8127,
  30. 8296,
  31. 8322,
  32. 8389,
  33. 8411,
  34. 8502,
  35. 8868,
  36. 8977,
  37. 9273,
  38. 9325,
  39. 9345,
  40. 9430
  41. ]
  42. },
  43. {
  44. "name": "Desktop",
  45. "color": "azure",
  46. "data": [
  47. 2164,
  48. 2292,
  49. 2386,
  50. 2430,
  51. 2528,
  52. 3045,
  53. 3255,
  54. 3295,
  55. 3481,
  56. 3604,
  57. 3688,
  58. 3840,
  59. 3932,
  60. 3949,
  61. 4003,
  62. 4298,
  63. 4424,
  64. 4869,
  65. 4922,
  66. 4973,
  67. 5155,
  68. 5267,
  69. 5566,
  70. 5689,
  71. 5692,
  72. 5758,
  73. 5773,
  74. 5799,
  75. 5960,
  76. 6000
  77. ]
  78. },
  79. {
  80. "name": "Tablet",
  81. "color": "green",
  82. "data": [
  83. 1069,
  84. 1089,
  85. 1125,
  86. 1141,
  87. 1162,
  88. 1179,
  89. 1185,
  90. 1216,
  91. 1274,
  92. 1322,
  93. 1346,
  94. 1395,
  95. 1439,
  96. 1564,
  97. 1581,
  98. 1590,
  99. 1656,
  100. 1815,
  101. 1868,
  102. 2010,
  103. 2133,
  104. 2179,
  105. 2264,
  106. 2265,
  107. 2278,
  108. 2343,
  109. 2354,
  110. 2456,
  111. 2472,
  112. 2480
  113. ]
  114. }
  115. ]
  116. },
  117. "demo-pie": {
  118. "type": "donut",
  119. "demo": true,
  120. "sparkline": true,
  121. "legend": true,
  122. "series": [
  123. {
  124. "name": "Direct",
  125. "color": "primary",
  126. "data": 44
  127. },
  128. {
  129. "name": "Affilliate",
  130. "color": "primary",
  131. "color-opacity": 0.8,
  132. "data": 55
  133. },
  134. {
  135. "name": "E-mail",
  136. "color": "primary",
  137. "color-opacity": 0.6,
  138. "data": 12
  139. },
  140. {
  141. "name": "Other",
  142. "color": "gray-300",
  143. "data": 2
  144. }
  145. ]
  146. },
  147. "demo-bar": {
  148. "type": "bar",
  149. "legend": true,
  150. "horizontal": true,
  151. "stacked": true,
  152. "categories": [
  153. 2008,
  154. 2009,
  155. 2010,
  156. 2011,
  157. 2012,
  158. 2013,
  159. 2014
  160. ],
  161. "x-formatter": "val + \"K\"",
  162. "series": [
  163. {
  164. "name": "Container for a Fanta",
  165. "color": "purple",
  166. "data": [
  167. 44,
  168. 55,
  169. 41,
  170. 37,
  171. 22,
  172. 43,
  173. 21
  174. ]
  175. },
  176. {
  177. "name": "Strange sunglasses",
  178. "color": "green",
  179. "data": [
  180. 53,
  181. 32,
  182. 33,
  183. 52,
  184. 13,
  185. 43,
  186. 32
  187. ]
  188. },
  189. {
  190. "name": "Pen Pineapple Apple Pen",
  191. "color": "yellow",
  192. "data": [
  193. 12,
  194. 17,
  195. 11,
  196. 9,
  197. 15,
  198. 11,
  199. 20
  200. ]
  201. },
  202. {
  203. "name": "Binoculars",
  204. "color": "red",
  205. "data": [
  206. 9,
  207. 7,
  208. 5,
  209. 8,
  210. 6,
  211. 9,
  212. 4
  213. ]
  214. },
  215. {
  216. "name": "Magical notebook",
  217. "color": "primary",
  218. "data": [
  219. 25,
  220. 12,
  221. 19,
  222. 32,
  223. 25,
  224. 24,
  225. 10
  226. ]
  227. }
  228. ]
  229. },
  230. "demo-area": {
  231. "type": "area",
  232. "legend": true,
  233. "datetime": true,
  234. "series": [
  235. {
  236. "name": "series1",
  237. "color": "primary",
  238. "data": [
  239. 56,
  240. 40,
  241. 39,
  242. 47,
  243. 34,
  244. 48,
  245. 44
  246. ]
  247. },
  248. {
  249. "name": "series2",
  250. "color": "purple",
  251. "data": [
  252. 45,
  253. 43,
  254. 30,
  255. 23,
  256. 38,
  257. 39,
  258. 54
  259. ]
  260. }
  261. ]
  262. },
  263. "demo-line": {
  264. "type": "line",
  265. "datetime": true,
  266. "stroke-curve": "straight",
  267. "legend": true,
  268. "series": [
  269. {
  270. "name": "Session Duration",
  271. "color": "yellow",
  272. "data": [
  273. 117,
  274. 92,
  275. 94,
  276. 98,
  277. 75,
  278. 110,
  279. 69,
  280. 80,
  281. 109,
  282. 113,
  283. 115,
  284. 95
  285. ]
  286. },
  287. {
  288. "name": "Page Views",
  289. "color": "green",
  290. "data": [
  291. 59,
  292. 80,
  293. 61,
  294. 66,
  295. 70,
  296. 84,
  297. 87,
  298. 64,
  299. 94,
  300. 56,
  301. 55,
  302. 67
  303. ]
  304. },
  305. {
  306. "name": "Total Visits",
  307. "color": "primary",
  308. "data": [
  309. 53,
  310. 51,
  311. 52,
  312. 41,
  313. 46,
  314. 60,
  315. 45,
  316. 43,
  317. 30,
  318. 50,
  319. 58,
  320. 59
  321. ]
  322. }
  323. ]
  324. },
  325. "social-referrals": {
  326. "demo": false,
  327. "type": "line",
  328. "datetime": true,
  329. "height": 18,
  330. "legend": true,
  331. "show-x": true,
  332. "name": "Social referrals",
  333. "series": [
  334. {
  335. "name": "Facebook",
  336. "color": "facebook",
  337. "data": [
  338. 13281,
  339. 8521,
  340. 15038,
  341. 9983,
  342. 15417,
  343. 8888,
  344. 7052,
  345. 14270,
  346. 5214,
  347. 9587,
  348. 5950,
  349. 16852,
  350. 17836,
  351. 12217,
  352. 17406,
  353. 12262,
  354. 9147,
  355. 14961,
  356. 18292,
  357. 15230,
  358. 13435,
  359. 10649,
  360. 5140,
  361. 13680,
  362. 4508,
  363. 13271,
  364. 13413,
  365. 5543,
  366. 18727,
  367. 18238,
  368. 18175,
  369. 6246,
  370. 5864,
  371. 17847,
  372. 9170,
  373. 6445,
  374. 12945,
  375. 8142,
  376. 8980,
  377. 10422,
  378. 15535,
  379. 11569,
  380. 10114,
  381. 17621,
  382. 16138,
  383. 13046,
  384. 6652,
  385. 9906,
  386. 14100,
  387. 16495,
  388. 6749
  389. ]
  390. },
  391. {
  392. "name": "Twitter",
  393. "color": "twitter",
  394. "data": [
  395. 3680,
  396. 1862,
  397. 3070,
  398. 2252,
  399. 5348,
  400. 3091,
  401. 3000,
  402. 3984,
  403. 5176,
  404. 5325,
  405. 2420,
  406. 5474,
  407. 3098,
  408. 1893,
  409. 3748,
  410. 2879,
  411. 4197,
  412. 5186,
  413. 4213,
  414. 4334,
  415. 2807,
  416. 1594,
  417. 4863,
  418. 2030,
  419. 3752,
  420. 4856,
  421. 5341,
  422. 3954,
  423. 3461,
  424. 3097,
  425. 3404,
  426. 4949,
  427. 2283,
  428. 3227,
  429. 3630,
  430. 2360,
  431. 3477,
  432. 4675,
  433. 1901,
  434. 2252,
  435. 3347,
  436. 2954,
  437. 5029,
  438. 2079,
  439. 2830,
  440. 3292,
  441. 4578,
  442. 3401,
  443. 4104,
  444. 3749,
  445. 4457,
  446. 3734
  447. ]
  448. },
  449. {
  450. "name": "Dribbble",
  451. "color": "dribbble",
  452. "data": [
  453. 722,
  454. 1866,
  455. 961,
  456. 1108,
  457. 1110,
  458. 561,
  459. 1753,
  460. 1815,
  461. 1985,
  462. 776,
  463. 859,
  464. 547,
  465. 1488,
  466. 766,
  467. 702,
  468. 621,
  469. 1599,
  470. 1372,
  471. 1620,
  472. 963,
  473. 759,
  474. 764,
  475. 739,
  476. 789,
  477. 1696,
  478. 1454,
  479. 1842,
  480. 734,
  481. 551,
  482. 1689,
  483. 1924,
  484. 1875,
  485. 908,
  486. 1675,
  487. 1541,
  488. 1953,
  489. 534,
  490. 502,
  491. 1524,
  492. 1867,
  493. 719,
  494. 1472,
  495. 1608,
  496. 1025,
  497. 889,
  498. 1150,
  499. 654,
  500. 1695,
  501. 1662,
  502. 1285,
  503. 1787
  504. ]
  505. }
  506. ]
  507. },
  508. "mentions": {
  509. "stacked": true,
  510. "datetime": true,
  511. "show-x": true,
  512. "demo": false,
  513. "series": [
  514. {
  515. "name": "Web",
  516. "data": [
  517. 1,
  518. 0,
  519. 0,
  520. 0,
  521. 0,
  522. 1,
  523. 1,
  524. 0,
  525. 0,
  526. 0,
  527. 2,
  528. 12,
  529. 5,
  530. 8,
  531. 22,
  532. 6,
  533. 8,
  534. 6,
  535. 4,
  536. 1,
  537. 8,
  538. 24,
  539. 29,
  540. 51,
  541. 40,
  542. 47,
  543. 23,
  544. 26,
  545. 50,
  546. 26,
  547. 41,
  548. 22,
  549. 46,
  550. 47,
  551. 81,
  552. 46,
  553. 6
  554. ],
  555. "color": "primary"
  556. },
  557. {
  558. "name": "Social",
  559. "data": [
  560. 2,
  561. 5,
  562. 4,
  563. 3,
  564. 3,
  565. 1,
  566. 4,
  567. 7,
  568. 5,
  569. 1,
  570. 2,
  571. 5,
  572. 3,
  573. 2,
  574. 6,
  575. 7,
  576. 7,
  577. 1,
  578. 5,
  579. 5,
  580. 2,
  581. 12,
  582. 4,
  583. 6,
  584. 18,
  585. 3,
  586. 5,
  587. 2,
  588. 13,
  589. 15,
  590. 20,
  591. 47,
  592. 18,
  593. 15,
  594. 11,
  595. 10,
  596. 0
  597. ],
  598. "color": "primary",
  599. "color-opacity": 0.8
  600. },
  601. {
  602. "name": "Other",
  603. "data": [
  604. 2,
  605. 9,
  606. 1,
  607. 7,
  608. 8,
  609. 3,
  610. 6,
  611. 5,
  612. 5,
  613. 4,
  614. 6,
  615. 4,
  616. 1,
  617. 9,
  618. 3,
  619. 6,
  620. 7,
  621. 5,
  622. 2,
  623. 8,
  624. 4,
  625. 9,
  626. 1,
  627. 2,
  628. 6,
  629. 7,
  630. 5,
  631. 1,
  632. 8,
  633. 3,
  634. 2,
  635. 3,
  636. 4,
  637. 9,
  638. 7,
  639. 1,
  640. 6
  641. ],
  642. "color": "green",
  643. "color-opacity": 0.8
  644. }
  645. ]
  646. },
  647. "completion-tasks": {
  648. "demo": true,
  649. "datetime": true,
  650. "debug": true,
  651. "series": [
  652. {
  653. "name": "Tasks completion",
  654. "data": [
  655. 155,
  656. 65,
  657. 465,
  658. 265,
  659. 225,
  660. 325,
  661. 80
  662. ]
  663. }
  664. ]
  665. },
  666. "completion-tasks-2": {
  667. "demo": true,
  668. "extend": "completion-tasks",
  669. "type": "line"
  670. },
  671. "completion-tasks-3": {
  672. "demo": true,
  673. "extend": "completion-tasks",
  674. "type": "area"
  675. },
  676. "completion-tasks-4": {
  677. "demo": true,
  678. "extend": "completion-tasks",
  679. "stroke-curve": "straight",
  680. "type": "line"
  681. },
  682. "completion-tasks-5": {
  683. "demo": true,
  684. "extend": "completion-tasks",
  685. "stroke-curve": "stepline",
  686. "type": "line"
  687. },
  688. "completion-tasks-6": {
  689. "demo": true,
  690. "extend": "completion-tasks",
  691. "type": "bar",
  692. "horizontal": true
  693. },
  694. "completion-tasks-7": {
  695. "demo": true,
  696. "extend": "completion-tasks",
  697. "type": "line",
  698. "datalabels": true
  699. },
  700. "completion-tasks-8": {
  701. "demo": true,
  702. "datetime": true,
  703. "type": "bar",
  704. "series": [
  705. {
  706. "data": [
  707. 155,
  708. 65,
  709. 465,
  710. 265,
  711. 225,
  712. 325,
  713. 80
  714. ]
  715. },
  716. {
  717. "data": [
  718. 113,
  719. 42,
  720. 65,
  721. 54,
  722. 76,
  723. 65,
  724. 35
  725. ],
  726. "color": "red"
  727. }
  728. ]
  729. },
  730. "completion-tasks-9": {
  731. "demo": true,
  732. "extend": "completion-tasks-8",
  733. "stacked": true
  734. },
  735. "completion-tasks-10": {
  736. "demo": true,
  737. "extend": "completion-tasks-8",
  738. "type": "area"
  739. },
  740. "completion-tasks-11": {
  741. "demo": true,
  742. "extend": "completion-tasks-8",
  743. "type": "area",
  744. "stacked": true
  745. },
  746. "tasks-overview": {
  747. "type": "bar",
  748. "debug": true,
  749. "categories": [
  750. "Sprint 1",
  751. "Sprint 2",
  752. "Sprint 3",
  753. "Sprint 4",
  754. "Sprint 5",
  755. "Sprint 6",
  756. "Sprint 7",
  757. "Sprint 8",
  758. "Sprint 9",
  759. "Sprint 10",
  760. "Sprint 11",
  761. "Sprint 12",
  762. "Sprint 13",
  763. "Sprint 14",
  764. "Sprint 15",
  765. "Sprint 16",
  766. "Sprint 17",
  767. "Sprint 18",
  768. "Sprint 19",
  769. "Sprint 20",
  770. "Sprint 21",
  771. "Sprint 22",
  772. "Sprint 23",
  773. "Sprint 24"
  774. ],
  775. "series": [
  776. {
  777. "name": "A",
  778. "data": [
  779. 44,
  780. 32,
  781. 48,
  782. 72,
  783. 60,
  784. 16,
  785. 44,
  786. 32,
  787. 78,
  788. 50,
  789. 68,
  790. 34,
  791. 26,
  792. 48,
  793. 72,
  794. 60,
  795. 84,
  796. 64,
  797. 74,
  798. 52,
  799. 62,
  800. 50,
  801. 32,
  802. 22
  803. ]
  804. }
  805. ]
  806. },
  807. "campaigns": {
  808. "demo": true,
  809. "type": "radialBar",
  810. "sparkline": true,
  811. "series": [
  812. {
  813. "name": "Total Sent",
  814. "color": "primary",
  815. "data": 44
  816. },
  817. {
  818. "name": "Reached",
  819. "color": "primary",
  820. "color-opacity": 0.8,
  821. "data": 36
  822. },
  823. {
  824. "name": "Opened",
  825. "color": "primary",
  826. "color-opacity": 0.6,
  827. "data": 18
  828. }
  829. ]
  830. },
  831. "tasks": {
  832. "demo": true,
  833. "type": "line",
  834. "categories": [
  835. "M",
  836. "T",
  837. "W",
  838. "T",
  839. "F",
  840. "S",
  841. "S",
  842. "M",
  843. "T",
  844. "W",
  845. "T",
  846. "F",
  847. "S",
  848. "S",
  849. "M",
  850. "T",
  851. "W"
  852. ],
  853. "groups": [
  854. 1,
  855. 2,
  856. 3
  857. ],
  858. "hide-points": true,
  859. "fill": true,
  860. "remove-padding": true,
  861. "hide-tooltip": true,
  862. "series": [
  863. {
  864. "name": "New",
  865. "color": "primary",
  866. "data": [
  867. 0,
  868. 0,
  869. 1,
  870. 2,
  871. 21,
  872. 9,
  873. 12,
  874. 10,
  875. 31,
  876. 13,
  877. 65,
  878. 10,
  879. 12,
  880. 6,
  881. 4,
  882. 3,
  883. 0
  884. ]
  885. },
  886. {
  887. "name": "Completed",
  888. "color": "lime",
  889. "data": [
  890. 0,
  891. 0,
  892. 1,
  893. 2,
  894. 7,
  895. 5,
  896. 6,
  897. 8,
  898. 24,
  899. 7,
  900. 12,
  901. 5,
  902. 6,
  903. 3,
  904. 2,
  905. 2,
  906. 0
  907. ]
  908. },
  909. {
  910. "name": "Closed",
  911. "color": "orange",
  912. "data": [
  913. 0,
  914. 0,
  915. 1,
  916. 0,
  917. 2,
  918. 0,
  919. 1,
  920. 0,
  921. 2,
  922. 3,
  923. 0,
  924. 2,
  925. 3,
  926. 2,
  927. 1,
  928. 0,
  929. 0
  930. ]
  931. }
  932. ]
  933. },
  934. "development-activity": {
  935. "type": "area",
  936. "groups": [
  937. 1,
  938. 2,
  939. 3
  940. ],
  941. "hide-points": true,
  942. "remove-padding": true,
  943. "sparkline": true,
  944. "datetime": true,
  945. "series": [
  946. {
  947. "name": "Purchases",
  948. "color": "primary",
  949. "data": [
  950. 3,
  951. 5,
  952. 4,
  953. 6,
  954. 7,
  955. 5,
  956. 6,
  957. 8,
  958. 24,
  959. 7,
  960. 12,
  961. 5,
  962. 6,
  963. 3,
  964. 8,
  965. 4,
  966. 14,
  967. 30,
  968. 17,
  969. 19,
  970. 15,
  971. 14,
  972. 25,
  973. 32,
  974. 40,
  975. 55,
  976. 60,
  977. 48,
  978. 52,
  979. 70
  980. ]
  981. }
  982. ]
  983. },
  984. "uptime": {
  985. "type": "area",
  986. "datetime": true,
  987. "series": [
  988. {
  989. "name": "Uptime",
  990. "color": "primary",
  991. "data": [
  992. 150,
  993. 160,
  994. 170,
  995. 161,
  996. 167,
  997. 162,
  998. 161,
  999. 152,
  1000. 141,
  1001. 144,
  1002. 154,
  1003. 166,
  1004. 176,
  1005. 187,
  1006. 198,
  1007. 210,
  1008. 196,
  1009. 207,
  1010. 200,
  1011. 187,
  1012. 192,
  1013. 204,
  1014. 193,
  1015. 204,
  1016. 208,
  1017. 196,
  1018. 193,
  1019. 178,
  1020. 191,
  1021. 204,
  1022. 218,
  1023. 211,
  1024. 218,
  1025. 216,
  1026. 201,
  1027. 197,
  1028. 190,
  1029. 179,
  1030. 172,
  1031. 158,
  1032. 159,
  1033. 147,
  1034. 152,
  1035. 152,
  1036. 144,
  1037. 137,
  1038. 136,
  1039. 123,
  1040. 112,
  1041. 99,
  1042. 100,
  1043. 95,
  1044. 105,
  1045. 116,
  1046. 125,
  1047. 124,
  1048. 133,
  1049. 129,
  1050. 116,
  1051. 119,
  1052. 109,
  1053. 114,
  1054. 115,
  1055. 111,
  1056. 96,
  1057. 104,
  1058. 104,
  1059. 102,
  1060. 116,
  1061. 126,
  1062. 117,
  1063. 130,
  1064. 124,
  1065. 126,
  1066. 131,
  1067. 143,
  1068. 130,
  1069. 116,
  1070. 118,
  1071. 122,
  1072. 132,
  1073. 126,
  1074. 136,
  1075. 123,
  1076. 112,
  1077. 116,
  1078. 113,
  1079. 113,
  1080. 109,
  1081. 99,
  1082. 100,
  1083. 95,
  1084. 83,
  1085. 79,
  1086. 64,
  1087. 79,
  1088. 81,
  1089. 94,
  1090. 99,
  1091. 97,
  1092. 83,
  1093. 71,
  1094. 75,
  1095. 69,
  1096. 71,
  1097. 75,
  1098. 84,
  1099. 90,
  1100. 100,
  1101. 96,
  1102. 108,
  1103. 102,
  1104. 116,
  1105. 112,
  1106. 112,
  1107. 102,
  1108. 115,
  1109. 120,
  1110. 118,
  1111. 118
  1112. ]
  1113. }
  1114. ]
  1115. },
  1116. "uptime-incidents": {
  1117. "type": "bar",
  1118. "y-max": 20,
  1119. "datetime": true,
  1120. "series": [
  1121. {
  1122. "name": "Uptime incidents",
  1123. "color": "red",
  1124. "data": [
  1125. 1,
  1126. 2,
  1127. 6,
  1128. 3,
  1129. 1,
  1130. 1,
  1131. 2,
  1132. 5,
  1133. 2,
  1134. 5,
  1135. 6,
  1136. 2,
  1137. 4,
  1138. 3,
  1139. 4,
  1140. 5,
  1141. 4,
  1142. 3,
  1143. 2,
  1144. 1,
  1145. 2,
  1146. 0,
  1147. 2,
  1148. 1,
  1149. 1
  1150. ]
  1151. }
  1152. ]
  1153. },
  1154. "line": {
  1155. "type": "line",
  1156. "categories": [
  1157. "2013",
  1158. "2014",
  1159. "2015",
  1160. "2016",
  1161. "2017",
  1162. "2018"
  1163. ],
  1164. "series": [
  1165. {
  1166. "name": "Development",
  1167. "color": "orange",
  1168. "data": [
  1169. 2,
  1170. 8,
  1171. 6,
  1172. 7,
  1173. 14,
  1174. 11
  1175. ]
  1176. },
  1177. {
  1178. "name": "Marketing",
  1179. "color": "primary",
  1180. "data": [
  1181. 5,
  1182. 15,
  1183. 11,
  1184. 15,
  1185. 21,
  1186. 25
  1187. ]
  1188. },
  1189. {
  1190. "name": "Sales",
  1191. "color": "green",
  1192. "data": [
  1193. 17,
  1194. 18,
  1195. 21,
  1196. 20,
  1197. 30,
  1198. 29
  1199. ]
  1200. }
  1201. ]
  1202. },
  1203. "line-stroke": {
  1204. "demo": true,
  1205. "type": "line",
  1206. "stroke-curve": "straight",
  1207. "categories": [
  1208. "2013",
  1209. "2014",
  1210. "2015",
  1211. "2016",
  1212. "2017",
  1213. "2018",
  1214. "2019"
  1215. ],
  1216. "series": [
  1217. {
  1218. "name": "Development",
  1219. "color": "orange",
  1220. "data": [
  1221. 8,
  1222. 10,
  1223. 11,
  1224. 12,
  1225. 20,
  1226. 27,
  1227. 30
  1228. ]
  1229. },
  1230. {
  1231. "name": "Marketing",
  1232. "color": "primary",
  1233. "data": [
  1234. 3,
  1235. 16,
  1236. 17,
  1237. 19,
  1238. 20,
  1239. 30,
  1240. 30
  1241. ]
  1242. },
  1243. {
  1244. "name": "Sales",
  1245. "color": "green",
  1246. "data": [
  1247. 7,
  1248. 10,
  1249. 11,
  1250. 18,
  1251. 18,
  1252. 18,
  1253. 24
  1254. ]
  1255. }
  1256. ]
  1257. },
  1258. "stepline": {
  1259. "demo": true,
  1260. "type": "line",
  1261. "stroke-curve": "stepline",
  1262. "series": [
  1263. {
  1264. "name": "Development",
  1265. "color": "orange",
  1266. "data": [
  1267. 34,
  1268. 44,
  1269. 54,
  1270. 21,
  1271. 12,
  1272. 43,
  1273. 33,
  1274. 23,
  1275. 66,
  1276. 66,
  1277. 58
  1278. ]
  1279. }
  1280. ]
  1281. },
  1282. "temperature": {
  1283. "demo": true,
  1284. "type": "line",
  1285. "show-labels": true,
  1286. "show-data-labels": true,
  1287. "show-markers": true,
  1288. "categories": [
  1289. "Jan",
  1290. "Feb",
  1291. "Mar",
  1292. "Apr",
  1293. "May",
  1294. "Jun",
  1295. "Jul",
  1296. "Aug",
  1297. "Sep",
  1298. "Oct",
  1299. "Nov",
  1300. "Dec"
  1301. ],
  1302. "series": [
  1303. {
  1304. "name": "Tokyo",
  1305. "color": "primary",
  1306. "data": [
  1307. 7,
  1308. 6.9,
  1309. 9.5,
  1310. 14.5,
  1311. 18.4,
  1312. 21.5,
  1313. 25.2,
  1314. 26.5,
  1315. 23.3,
  1316. 18.3,
  1317. 13.9,
  1318. 9.6
  1319. ]
  1320. },
  1321. {
  1322. "name": "London",
  1323. "color": "green",
  1324. "data": [
  1325. 3.9,
  1326. 4.2,
  1327. 5.7,
  1328. 8.5,
  1329. 11.9,
  1330. 15.2,
  1331. 17,
  1332. 16.6,
  1333. 14.2,
  1334. 10.3,
  1335. 6.6,
  1336. 4.8
  1337. ]
  1338. }
  1339. ]
  1340. },
  1341. "area": {
  1342. "demo": true,
  1343. "type": "area",
  1344. "categories": [
  1345. "Jan",
  1346. "Feb",
  1347. "Mar",
  1348. "Apr",
  1349. "May",
  1350. "Jun"
  1351. ],
  1352. "series": [
  1353. {
  1354. "name": "Maximum",
  1355. "color": "primary",
  1356. "data": [
  1357. 11,
  1358. 8,
  1359. 15,
  1360. 18,
  1361. 19,
  1362. 17
  1363. ]
  1364. },
  1365. {
  1366. "name": "Minimum",
  1367. "color": "pink",
  1368. "data": [
  1369. 7,
  1370. 7,
  1371. 5,
  1372. 7,
  1373. 9,
  1374. 12
  1375. ]
  1376. }
  1377. ]
  1378. },
  1379. "area-spline": {
  1380. "demo": true,
  1381. "type": "area",
  1382. "spline": true,
  1383. "categories": [
  1384. "Jan",
  1385. "Feb",
  1386. "Mar",
  1387. "Apr",
  1388. "May",
  1389. "Jun"
  1390. ],
  1391. "series": [
  1392. {
  1393. "name": "Maximum",
  1394. "color": "primary",
  1395. "data": [
  1396. 11,
  1397. 8,
  1398. 15,
  1399. 18,
  1400. 19,
  1401. 17
  1402. ]
  1403. },
  1404. {
  1405. "name": "Minimum",
  1406. "color": "pink",
  1407. "data": [
  1408. 7,
  1409. 7,
  1410. 5,
  1411. 7,
  1412. 9,
  1413. 12
  1414. ]
  1415. }
  1416. ]
  1417. },
  1418. "area-spline-stacked": {
  1419. "demo": true,
  1420. "type": "area",
  1421. "spline": true,
  1422. "stacked": true,
  1423. "categories": [
  1424. "Jan",
  1425. "Feb",
  1426. "Mar",
  1427. "Apr",
  1428. "May",
  1429. "Jun"
  1430. ],
  1431. "series": [
  1432. {
  1433. "name": "Maximum",
  1434. "color": "primary",
  1435. "data": [
  1436. 11,
  1437. 8,
  1438. 15,
  1439. 18,
  1440. 19,
  1441. 17
  1442. ]
  1443. },
  1444. {
  1445. "name": "Minimum",
  1446. "color": "pink",
  1447. "data": [
  1448. 7,
  1449. 7,
  1450. 5,
  1451. 7,
  1452. 9,
  1453. 12
  1454. ]
  1455. }
  1456. ]
  1457. },
  1458. "spline": {
  1459. "demo": true,
  1460. "type": "line",
  1461. "spline": true,
  1462. "show-labels": true,
  1463. "categories": [
  1464. "Jan",
  1465. "Feb",
  1466. "Mar",
  1467. "Apr",
  1468. "May",
  1469. "Jun"
  1470. ],
  1471. "series": [
  1472. {
  1473. "name": "Hestavollane",
  1474. "color": "primary",
  1475. "data": [
  1476. 0.2,
  1477. 0.8,
  1478. 0.8,
  1479. 0.8,
  1480. 1,
  1481. 1.3,
  1482. 1.5,
  1483. 2.9,
  1484. 1.9,
  1485. 2.6,
  1486. 1.6,
  1487. 3,
  1488. 4,
  1489. 3.6,
  1490. 4.5,
  1491. 4.2,
  1492. 4.5,
  1493. 4.5,
  1494. 4,
  1495. 3.1,
  1496. 2.7,
  1497. 4,
  1498. 2.7,
  1499. 2.3,
  1500. 2.3,
  1501. 4.1,
  1502. 7.7,
  1503. 7.1,
  1504. 5.6,
  1505. 6.1,
  1506. 5.8,
  1507. 8.6,
  1508. 7.2,
  1509. 9,
  1510. 10.9,
  1511. 11.5,
  1512. 11.6,
  1513. 11.1,
  1514. 12,
  1515. 12.3,
  1516. 10.7,
  1517. 9.4,
  1518. 9.8,
  1519. 9.6,
  1520. 9.8,
  1521. 9.5,
  1522. 8.5,
  1523. 7.4,
  1524. 7.6
  1525. ]
  1526. },
  1527. {
  1528. "name": "Vik",
  1529. "color": "green",
  1530. "data": [
  1531. 0,
  1532. 0,
  1533. 0.6,
  1534. 0.9,
  1535. 0.8,
  1536. 0.2,
  1537. 0,
  1538. 0,
  1539. 0,
  1540. 0.1,
  1541. 0.6,
  1542. 0.7,
  1543. 0.8,
  1544. 0.6,
  1545. 0.2,
  1546. 0,
  1547. 0.1,
  1548. 0.3,
  1549. 0.3,
  1550. 0,
  1551. 0.1,
  1552. 0,
  1553. 0,
  1554. 0,
  1555. 0.2,
  1556. 0.1,
  1557. 0,
  1558. 0.3,
  1559. 0,
  1560. 0.1,
  1561. 0.2,
  1562. 0.1,
  1563. 0.3,
  1564. 0.3,
  1565. 0,
  1566. 3.1,
  1567. 3.1,
  1568. 2.5,
  1569. 1.5,
  1570. 1.9,
  1571. 2.1,
  1572. 1,
  1573. 2.3,
  1574. 1.9,
  1575. 1.2,
  1576. 0.7,
  1577. 1.3,
  1578. 0.4,
  1579. 0.3
  1580. ]
  1581. }
  1582. ]
  1583. },
  1584. "pie": {
  1585. "type": "pie",
  1586. "show-data-labels": true,
  1587. "sparkline": true,
  1588. "series": [
  1589. {
  1590. "name": "A",
  1591. "color": "primary",
  1592. "data": 63
  1593. },
  1594. {
  1595. "name": "B",
  1596. "color": "primary",
  1597. "color-opacity": 0.8,
  1598. "data": 44
  1599. },
  1600. {
  1601. "name": "C",
  1602. "color": "primary",
  1603. "color-opacity": 0.6,
  1604. "data": 12
  1605. },
  1606. {
  1607. "name": "D",
  1608. "color": "primary",
  1609. "color-opacity": 0.4,
  1610. "data": 14
  1611. }
  1612. ]
  1613. },
  1614. "donut": {
  1615. "type": "donut",
  1616. "sparkline": true,
  1617. "series": [
  1618. {
  1619. "name": "Maximum",
  1620. "color": "green",
  1621. "data": 63
  1622. },
  1623. {
  1624. "name": "Minimum",
  1625. "color": "green",
  1626. "color-opacity": 0.8,
  1627. "data": 37
  1628. }
  1629. ]
  1630. },
  1631. "scatter": {
  1632. "demo": true,
  1633. "type": "scatter",
  1634. "categories": [
  1635. "Jan",
  1636. "Feb",
  1637. "Mar",
  1638. "Apr",
  1639. "May",
  1640. "Jun"
  1641. ],
  1642. "series": [
  1643. {
  1644. "name": "Maximum",
  1645. "color": "primary",
  1646. "data": [
  1647. 11,
  1648. 8,
  1649. 15,
  1650. 18,
  1651. 19,
  1652. 17
  1653. ]
  1654. },
  1655. {
  1656. "name": "Minimum",
  1657. "color": "pink",
  1658. "data": [
  1659. 7,
  1660. 7,
  1661. 5,
  1662. 7,
  1663. 9,
  1664. 12
  1665. ]
  1666. }
  1667. ]
  1668. },
  1669. "combination": {
  1670. "demo": true,
  1671. "type": "bar",
  1672. "types": {
  1673. "2": "line",
  1674. "3": "spline"
  1675. },
  1676. "groups": [
  1677. 1,
  1678. 4
  1679. ],
  1680. "categories": [
  1681. "2013",
  1682. "2014",
  1683. "2015",
  1684. "2016",
  1685. "2017",
  1686. "2018"
  1687. ],
  1688. "series": [
  1689. {
  1690. "name": "Development",
  1691. "color": "green",
  1692. "data": [
  1693. 30,
  1694. 20,
  1695. 50,
  1696. 40,
  1697. 60,
  1698. 50
  1699. ]
  1700. },
  1701. {
  1702. "name": "Marketing",
  1703. "color": "pink",
  1704. "data": [
  1705. 200,
  1706. 130,
  1707. 90,
  1708. 240,
  1709. 130,
  1710. 220
  1711. ]
  1712. },
  1713. {
  1714. "name": "Sales",
  1715. "color": "green",
  1716. "data": [
  1717. 300,
  1718. 200,
  1719. 160,
  1720. 400,
  1721. 250,
  1722. 250
  1723. ]
  1724. },
  1725. {
  1726. "name": "Sales",
  1727. "color": "primary",
  1728. "data": [
  1729. 200,
  1730. 130,
  1731. 90,
  1732. 240,
  1733. 130,
  1734. 220
  1735. ]
  1736. }
  1737. ]
  1738. },
  1739. "revenue-bg": {
  1740. "type": "area",
  1741. "datetime": true,
  1742. "sparkline": true,
  1743. "series": [
  1744. {
  1745. "name": "Profits",
  1746. "data": [
  1747. 37,
  1748. 35,
  1749. 44,
  1750. 28,
  1751. 36,
  1752. 24,
  1753. 65,
  1754. 31,
  1755. 37,
  1756. 39,
  1757. 62,
  1758. 51,
  1759. 35,
  1760. 41,
  1761. 35,
  1762. 27,
  1763. 93,
  1764. 53,
  1765. 61,
  1766. 27,
  1767. 54,
  1768. 43,
  1769. 19,
  1770. 46,
  1771. 39,
  1772. 62,
  1773. 51,
  1774. 35,
  1775. 41,
  1776. 67
  1777. ]
  1778. }
  1779. ]
  1780. },
  1781. "new-clients": {
  1782. "type": "line",
  1783. "datetime": true,
  1784. "sparkline": true,
  1785. "stroke-width": [
  1786. 2,
  1787. 1
  1788. ],
  1789. "stroke-dash": [
  1790. 0,
  1791. 3
  1792. ],
  1793. "series": [
  1794. {
  1795. "name": "May",
  1796. "color": "primary",
  1797. "data": [
  1798. 37,
  1799. 35,
  1800. 44,
  1801. 28,
  1802. 36,
  1803. 24,
  1804. 65,
  1805. 31,
  1806. 37,
  1807. 39,
  1808. 62,
  1809. 51,
  1810. 35,
  1811. 41,
  1812. 35,
  1813. 27,
  1814. 93,
  1815. 53,
  1816. 61,
  1817. 27,
  1818. 54,
  1819. 43,
  1820. 4,
  1821. 46,
  1822. 39,
  1823. 62,
  1824. 51,
  1825. 35,
  1826. 41,
  1827. 67
  1828. ]
  1829. },
  1830. {
  1831. "name": "April",
  1832. "color": "gray-600",
  1833. "data": [
  1834. 93,
  1835. 54,
  1836. 51,
  1837. 24,
  1838. 35,
  1839. 35,
  1840. 31,
  1841. 67,
  1842. 19,
  1843. 43,
  1844. 28,
  1845. 36,
  1846. 62,
  1847. 61,
  1848. 27,
  1849. 39,
  1850. 35,
  1851. 41,
  1852. 27,
  1853. 35,
  1854. 51,
  1855. 46,
  1856. 62,
  1857. 37,
  1858. 44,
  1859. 53,
  1860. 41,
  1861. 65,
  1862. 39,
  1863. 37
  1864. ]
  1865. }
  1866. ]
  1867. },
  1868. "active-users": {
  1869. "type": "bar",
  1870. "datetime": true,
  1871. "sparkline": true,
  1872. "series": [
  1873. {
  1874. "name": "Profits",
  1875. "data": [
  1876. 37,
  1877. 35,
  1878. 44,
  1879. 28,
  1880. 36,
  1881. 24,
  1882. 65,
  1883. 31,
  1884. 37,
  1885. 39,
  1886. 62,
  1887. 51,
  1888. 35,
  1889. 41,
  1890. 35,
  1891. 27,
  1892. 93,
  1893. 53,
  1894. 61,
  1895. 27,
  1896. 54,
  1897. 43,
  1898. 19,
  1899. 46,
  1900. 39,
  1901. 62,
  1902. 51,
  1903. 35,
  1904. 41,
  1905. 67
  1906. ]
  1907. }
  1908. ]
  1909. },
  1910. "traffic-in": {
  1911. "type": "bar",
  1912. "sparkline": true,
  1913. "color": "green",
  1914. "series": [
  1915. {
  1916. "name": "Inbound",
  1917. "data": [
  1918. 14,
  1919. -3,
  1920. 14,
  1921. 9,
  1922. 4,
  1923. 6,
  1924. -2,
  1925. 7,
  1926. 7,
  1927. 14,
  1928. 10,
  1929. 9,
  1930. 5,
  1931. -1
  1932. ]
  1933. }
  1934. ]
  1935. },
  1936. "traffic-out": {
  1937. "type": "bar",
  1938. "sparkline": true,
  1939. "color": "red",
  1940. "series": [
  1941. {
  1942. "name": "Outbound",
  1943. "data": [
  1944. -3,
  1945. 7,
  1946. 9,
  1947. 14,
  1948. 4,
  1949. 5,
  1950. 3,
  1951. -1,
  1952. 7,
  1953. 10,
  1954. 14,
  1955. 14,
  1956. -2,
  1957. 6
  1958. ]
  1959. }
  1960. ]
  1961. }
  1962. }