charts.html 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta14
  5. * @link https://tabler.io
  6. * Copyright 2018-2022 The Tabler Authors
  7. * Copyright 2018-2022 codecalm.net Paweł Kuna
  8. * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
  9. -->
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  15. <title>Charts - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
  16. <!-- CSS files -->
  17. <link href="./dist/css/tabler.min.css?1666304673" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1666304673" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1666304673" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1666304673" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1666304673" rel="stylesheet"/>
  22. <style>
  23. @import url('https://rsms.me/inter/inter.css');
  24. :root {
  25. --tblr-font-sans-serif: Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  26. }
  27. </style>
  28. </head>
  29. <body >
  30. <script src="./dist/js/demo-theme.min.js?1666304673"></script>
  31. <div class="page">
  32. <!-- Navbar -->
  33. <header class="navbar navbar-expand-md navbar-light d-print-none">
  34. <div class="container-xl">
  35. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-menu">
  36. <span class="navbar-toggler-icon"></span>
  37. </button>
  38. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  39. <a href=".">
  40. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  41. </a>
  42. </h1>
  43. <div class="navbar-nav flex-row order-md-last">
  44. <div class="nav-item d-none d-md-flex me-3">
  45. <div class="btn-list">
  46. <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
  47. <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
  48. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" /></svg>
  49. Source code
  50. </a>
  51. <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
  52. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  53. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-pink" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  54. Sponsor
  55. </a>
  56. </div>
  57. </div>
  58. <div class="d-none d-md-flex">
  59. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  60. data-bs-placement="bottom">
  61. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  62. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" /></svg>
  63. </a>
  64. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  65. data-bs-placement="bottom">
  66. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  67. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="12" cy="12" r="4" /><path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" /></svg>
  68. </a>
  69. <div class="nav-item dropdown d-none d-md-flex me-3">
  70. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  71. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  72. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /></svg>
  73. <span class="badge bg-red"></span>
  74. </a>
  75. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  76. <div class="card">
  77. <div class="card-header">
  78. <h3 class="card-title">Last updates</h3>
  79. </div>
  80. <div class="list-group list-group-flush list-group-hoverable">
  81. <div class="list-group-item">
  82. <div class="row align-items-center">
  83. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  84. <div class="col text-truncate">
  85. <a href="#" class="text-body d-block">Example 1</a>
  86. <div class="d-block text-muted text-truncate mt-n1">
  87. Change deprecated html tags to text decoration classes (#29604)
  88. </div>
  89. </div>
  90. <div class="col-auto">
  91. <a href="#" class="list-group-item-actions">
  92. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  93. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  94. </a>
  95. </div>
  96. </div>
  97. </div>
  98. <div class="list-group-item">
  99. <div class="row align-items-center">
  100. <div class="col-auto"><span class="status-dot d-block"></span></div>
  101. <div class="col text-truncate">
  102. <a href="#" class="text-body d-block">Example 2</a>
  103. <div class="d-block text-muted text-truncate mt-n1">
  104. justify-content:between ⇒ justify-content:space-between (#29734)
  105. </div>
  106. </div>
  107. <div class="col-auto">
  108. <a href="#" class="list-group-item-actions show">
  109. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  110. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-yellow" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  111. </a>
  112. </div>
  113. </div>
  114. </div>
  115. <div class="list-group-item">
  116. <div class="row align-items-center">
  117. <div class="col-auto"><span class="status-dot d-block"></span></div>
  118. <div class="col text-truncate">
  119. <a href="#" class="text-body d-block">Example 3</a>
  120. <div class="d-block text-muted text-truncate mt-n1">
  121. Update change-version.js (#29736)
  122. </div>
  123. </div>
  124. <div class="col-auto">
  125. <a href="#" class="list-group-item-actions">
  126. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  127. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  128. </a>
  129. </div>
  130. </div>
  131. </div>
  132. <div class="list-group-item">
  133. <div class="row align-items-center">
  134. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  135. <div class="col text-truncate">
  136. <a href="#" class="text-body d-block">Example 4</a>
  137. <div class="d-block text-muted text-truncate mt-n1">
  138. Regenerate package-lock.json (#29730)
  139. </div>
  140. </div>
  141. <div class="col-auto">
  142. <a href="#" class="list-group-item-actions">
  143. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  144. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  145. </a>
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. <div class="nav-item dropdown">
  155. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  156. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  157. <div class="d-none d-xl-block ps-2">
  158. <div>Paweł Kuna</div>
  159. <div class="mt-1 small text-muted">UI Designer</div>
  160. </div>
  161. </a>
  162. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  163. <a href="#" class="dropdown-item">Status</a>
  164. <a href="#" class="dropdown-item">Profile</a>
  165. <a href="#" class="dropdown-item">Feedback</a>
  166. <div class="dropdown-divider"></div>
  167. <a href="./settings.html" class="dropdown-item">Settings</a>
  168. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  169. </div>
  170. </div>
  171. </div>
  172. </div>
  173. </header>
  174. <div class="navbar-expand-md">
  175. <div class="collapse navbar-collapse" id="navbar-menu">
  176. <div class="navbar navbar-light">
  177. <div class="container-xl">
  178. <ul class="navbar-nav">
  179. <li class="nav-item">
  180. <a class="nav-link" href="./index.html" >
  181. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/home -->
  182. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><polyline points="5 12 3 12 12 3 21 12 19 12" /><path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" /><path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" /></svg>
  183. </span>
  184. <span class="nav-link-title">
  185. Home
  186. </span>
  187. </a>
  188. </li>
  189. <li class="nav-item active dropdown">
  190. <a class="nav-link dropdown-toggle" href="#navbar-base" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  191. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/package -->
  192. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><polyline points="12 3 20 7.5 20 16.5 12 21 4 16.5 4 7.5 12 3" /><line x1="12" y1="12" x2="20" y2="7.5" /><line x1="12" y1="12" x2="12" y2="21" /><line x1="12" y1="12" x2="4" y2="7.5" /><line x1="16" y1="5.25" x2="8" y2="9.75" /></svg>
  193. </span>
  194. <span class="nav-link-title">
  195. Interface
  196. </span>
  197. </a>
  198. <div class="dropdown-menu">
  199. <div class="dropdown-menu-columns">
  200. <div class="dropdown-menu-column">
  201. <a class="dropdown-item" href="./empty.html">
  202. Empty page
  203. </a>
  204. <a class="dropdown-item" href="./accordion.html">
  205. Accordion
  206. </a>
  207. <a class="dropdown-item" href="./blank.html">
  208. Blank page
  209. </a>
  210. <a class="dropdown-item" href="./buttons.html">
  211. Buttons
  212. </a>
  213. <div class="dropend">
  214. <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  215. Cards
  216. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  217. </a>
  218. <div class="dropdown-menu">
  219. <a href="./cards.html" class="dropdown-item">
  220. Sample cards
  221. </a>
  222. <a href="./card-actions.html" class="dropdown-item">
  223. Card actions
  224. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  225. </a>
  226. <a href="./cards-masonry.html" class="dropdown-item">
  227. Cards Masonry
  228. </a>
  229. </div>
  230. </div>
  231. <a class="dropdown-item" href="./colors.html">
  232. Colors
  233. </a>
  234. <a class="dropdown-item" href="./datagrid.html">
  235. Data grid
  236. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  237. </a>
  238. <a class="dropdown-item" href="./datatables.html">
  239. Datatables
  240. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  241. </a>
  242. <a class="dropdown-item" href="./dropdowns.html">
  243. Dropdowns
  244. </a>
  245. <a class="dropdown-item" href="./modals.html">
  246. Modals
  247. </a>
  248. <a class="dropdown-item" href="./maps.html">
  249. Maps
  250. </a>
  251. <a class="dropdown-item" href="./map-fullsize.html">
  252. Map fullsize
  253. </a>
  254. <a class="dropdown-item" href="./maps-vector.html">
  255. Vector maps
  256. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  257. </a>
  258. <a class="dropdown-item" href="./navigation.html">
  259. Navigation
  260. </a>
  261. <a class="dropdown-item active" href="./charts.html">
  262. Charts
  263. </a>
  264. </div>
  265. <div class="dropdown-menu-column">
  266. <a class="dropdown-item" href="./pagination.html">
  267. <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
  268. Pagination
  269. </a>
  270. <a class="dropdown-item" href="./placeholder.html">
  271. Placeholder
  272. </a>
  273. <a class="dropdown-item" href="./tabs.html">
  274. Tabs
  275. </a>
  276. <a class="dropdown-item" href="./tables.html">
  277. Tables
  278. </a>
  279. <a class="dropdown-item" href="./carousel.html">
  280. Carousel
  281. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  282. </a>
  283. <a class="dropdown-item" href="./lists.html">
  284. Lists
  285. </a>
  286. <a class="dropdown-item" href="./typography.html">
  287. Typography
  288. </a>
  289. <a class="dropdown-item" href="./offcanvas.html">
  290. Offcanvas
  291. </a>
  292. <a class="dropdown-item" href="./markdown.html">
  293. Markdown
  294. </a>
  295. <a class="dropdown-item" href="./dropzone.html">
  296. Dropzone
  297. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  298. </a>
  299. <a class="dropdown-item" href="./lightbox.html">
  300. Lightbox
  301. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  302. </a>
  303. <a class="dropdown-item" href="./tinymce.html">
  304. TinyMCE
  305. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  306. </a>
  307. <a class="dropdown-item" href="./inline-player.html">
  308. Inline player
  309. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  310. </a>
  311. <div class="dropend">
  312. <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  313. Authentication
  314. </a>
  315. <div class="dropdown-menu">
  316. <a href="./sign-in.html" class="dropdown-item">
  317. Sign in
  318. </a>
  319. <a href="./sign-in-illustration.html" class="dropdown-item">
  320. Sign in with illustration
  321. </a>
  322. <a href="./sign-in-cover.html" class="dropdown-item">
  323. Sign in with cover
  324. </a>
  325. <a href="./sign-up.html" class="dropdown-item">
  326. Sign up
  327. </a>
  328. <a href="./forgot-password.html" class="dropdown-item">
  329. Forgot password
  330. </a>
  331. <a href="./terms-of-service.html" class="dropdown-item">
  332. Terms of service
  333. </a>
  334. <a href="./auth-lock.html" class="dropdown-item">
  335. Lock screen
  336. </a>
  337. </div>
  338. </div>
  339. <div class="dropend">
  340. <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  341. <!-- Download SVG icon from http://tabler-icons.io/i/file-minus -->
  342. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><line x1="9" y1="14" x2="15" y2="14" /></svg>
  343. Error pages
  344. </a>
  345. <div class="dropdown-menu">
  346. <a href="./error-404.html" class="dropdown-item">
  347. 404 page
  348. </a>
  349. <a href="./error-500.html" class="dropdown-item">
  350. 500 page
  351. </a>
  352. <a href="./error-maintenance.html" class="dropdown-item">
  353. Maintenance page
  354. </a>
  355. </div>
  356. </div>
  357. </div>
  358. </div>
  359. </div>
  360. </li>
  361. <li class="nav-item">
  362. <a class="nav-link" href="./form-elements.html" >
  363. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
  364. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><polyline points="9 11 12 14 20 6" /><path d="M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9" /></svg>
  365. </span>
  366. <span class="nav-link-title">
  367. Form elements
  368. </span>
  369. </a>
  370. </li>
  371. <li class="nav-item dropdown">
  372. <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  373. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  374. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  375. </span>
  376. <span class="nav-link-title">
  377. Extra
  378. </span>
  379. </a>
  380. <div class="dropdown-menu">
  381. <div class="dropdown-menu-columns">
  382. <div class="dropdown-menu-column">
  383. <a class="dropdown-item" href="./activity.html">
  384. Activity
  385. </a>
  386. <a class="dropdown-item" href="./gallery.html">
  387. Gallery
  388. </a>
  389. <a class="dropdown-item" href="./invoice.html">
  390. Invoice
  391. </a>
  392. <a class="dropdown-item" href="./search-results.html">
  393. Search results
  394. </a>
  395. <a class="dropdown-item" href="./pricing.html">
  396. Pricing cards
  397. </a>
  398. <a class="dropdown-item" href="./pricing-table.html">
  399. Pricing table
  400. </a>
  401. <a class="dropdown-item" href="./faq.html">
  402. FAQ
  403. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  404. </a>
  405. <a class="dropdown-item" href="./users.html">
  406. Users
  407. </a>
  408. <a class="dropdown-item" href="./license.html">
  409. License
  410. </a>
  411. </div>
  412. <div class="dropdown-menu-column">
  413. <a class="dropdown-item" href="./logs.html">
  414. Logs
  415. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  416. </a>
  417. <a class="dropdown-item" href="./music.html">
  418. Music
  419. </a>
  420. <a class="dropdown-item" href="./tasks.html">
  421. Tasks
  422. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  423. </a>
  424. <a class="dropdown-item" href="./uptime.html">
  425. Uptime monitor
  426. </a>
  427. <a class="dropdown-item" href="./widgets.html">
  428. Widgets
  429. </a>
  430. <a class="dropdown-item" href="./wizard.html">
  431. Wizard
  432. </a>
  433. <a class="dropdown-item" href="./settings.html">
  434. Settings
  435. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  436. </a>
  437. <a class="dropdown-item" href="./job-listing.html">
  438. Job listing
  439. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  440. </a>
  441. </div>
  442. </div>
  443. </div>
  444. </li>
  445. <li class="nav-item dropdown">
  446. <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  447. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
  448. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><rect x="4" y="4" width="6" height="5" rx="2" /><rect x="4" y="13" width="6" height="7" rx="2" /><rect x="14" y="4" width="6" height="7" rx="2" /><rect x="14" y="15" width="6" height="5" rx="2" /></svg>
  449. </span>
  450. <span class="nav-link-title">
  451. Layout
  452. </span>
  453. </a>
  454. <div class="dropdown-menu">
  455. <div class="dropdown-menu-columns">
  456. <div class="dropdown-menu-column">
  457. <a class="dropdown-item" href="./layout-horizontal.html">
  458. Horizontal
  459. </a>
  460. <a class="dropdown-item" href="./layout-boxed.html">
  461. Boxed
  462. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  463. </a>
  464. <a class="dropdown-item" href="./layout-vertical.html">
  465. Vertical
  466. </a>
  467. <a class="dropdown-item" href="./layout-vertical-transparent.html">
  468. Vertical transparent
  469. </a>
  470. <a class="dropdown-item" href="./layout-vertical-right.html">
  471. Right vertical
  472. </a>
  473. <a class="dropdown-item" href="./layout-condensed.html">
  474. Condensed
  475. </a>
  476. <a class="dropdown-item" href="./layout-combo.html">
  477. Combined
  478. </a>
  479. </div>
  480. <div class="dropdown-menu-column">
  481. <a class="dropdown-item" href="./layout-navbar-dark.html">
  482. Navbar dark
  483. </a>
  484. <a class="dropdown-item" href="./layout-navbar-sticky.html">
  485. Navbar sticky
  486. </a>
  487. <a class="dropdown-item" href="./layout-navbar-overlap.html">
  488. Navbar overlap
  489. </a>
  490. <a class="dropdown-item" href="./layout-rtl.html">
  491. RTL mode
  492. </a>
  493. <a class="dropdown-item" href="./layout-fluid.html">
  494. Fluid
  495. </a>
  496. <a class="dropdown-item" href="./layout-fluid-vertical.html">
  497. Fluid vertical
  498. </a>
  499. </div>
  500. </div>
  501. </div>
  502. </li>
  503. <li class="nav-item">
  504. <a class="nav-link" href="./icons.html" >
  505. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  506. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7" /><line x1="10" y1="10" x2="10.01" y2="10" /><line x1="14" y1="10" x2="14.01" y2="10" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  507. </span>
  508. <span class="nav-link-title">
  509. 2853 icons
  510. </span>
  511. </a>
  512. </li>
  513. <li class="nav-item dropdown">
  514. <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  515. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
  516. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="12" cy="12" r="4" /><circle cx="12" cy="12" r="9" /><line x1="15" y1="15" x2="18.35" y2="18.35" /><line x1="9" y1="15" x2="5.65" y2="18.35" /><line x1="5.65" y1="5.65" x2="9" y2="9" /><line x1="18.35" y1="5.65" x2="15" y2="9" /></svg>
  517. </span>
  518. <span class="nav-link-title">
  519. Help
  520. </span>
  521. </a>
  522. <div class="dropdown-menu">
  523. <a class="dropdown-item" href="./docs/index.html">
  524. Documentation
  525. </a>
  526. <a class="dropdown-item" href="./changelog.html">
  527. Changelog
  528. </a>
  529. <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
  530. Source code
  531. </a>
  532. <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
  533. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  534. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  535. Sponsor project!
  536. </a>
  537. </div>
  538. </li>
  539. </ul>
  540. <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
  541. <form action="./" method="get" autocomplete="off" novalidate>
  542. <div class="input-icon">
  543. <span class="input-icon-addon">
  544. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  545. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="10" cy="10" r="7" /><line x1="21" y1="21" x2="15" y2="15" /></svg>
  546. </span>
  547. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  548. </div>
  549. </form>
  550. </div>
  551. </div>
  552. </div>
  553. </div>
  554. </div>
  555. <div class="page-wrapper">
  556. <!-- Page header -->
  557. <div class="page-header d-print-none">
  558. <div class="container-xl">
  559. <div class="row g-2 align-items-center">
  560. <div class="col">
  561. <h2 class="page-title">
  562. Charts
  563. </h2>
  564. </div>
  565. </div>
  566. </div>
  567. </div>
  568. <!-- Page body -->
  569. <div class="page-body">
  570. <div class="container-xl">
  571. <div class="row row-cards">
  572. <div class="col-lg-6">
  573. <div class="card">
  574. <div class="card-body">
  575. <div class="d-flex">
  576. <h3 class="card-title">Active users</h3>
  577. <div class="ms-auto">
  578. <div class="dropdown">
  579. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  580. <div class="dropdown-menu dropdown-menu-end">
  581. <a class="dropdown-item active" href="#">Last 7 days</a>
  582. <a class="dropdown-item" href="#">Last 30 days</a>
  583. <a class="dropdown-item" href="#">Last 3 months</a>
  584. </div>
  585. </div>
  586. </div>
  587. </div>
  588. <div class="row">
  589. <div class="col">
  590. <div id="chart-active-users-2"></div>
  591. </div>
  592. <div class="col-md-auto">
  593. <div class="divide-y divide-y-fill">
  594. <div class="px-3">
  595. <div class="text-muted">
  596. <span class="status-dot bg-primary"></span> Mobile
  597. </div>
  598. <div class="h2">11,425</div>
  599. </div>
  600. <div class="px-3">
  601. <div class="text-muted">
  602. <span class="status-dot bg-azure"></span> Desktop
  603. </div>
  604. <div class="h2">6,458</div>
  605. </div>
  606. <div class="px-3">
  607. <div class="text-muted">
  608. <span class="status-dot bg-green"></span> Tablet
  609. </div>
  610. <div class="h2">3,985</div>
  611. </div>
  612. </div>
  613. </div>
  614. </div>
  615. </div>
  616. </div>
  617. </div>
  618. <div class="col-4">
  619. </div>
  620. <div class="col-12">
  621. <div class="card">
  622. <div class="card-body">
  623. <div class="d-flex">
  624. <h3 class="card-title">Social referrals</h3>
  625. <div class="ms-auto">
  626. <div class="dropdown">
  627. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  628. <div class="dropdown-menu dropdown-menu-end">
  629. <a class="dropdown-item active" href="#">Last 7 days</a>
  630. <a class="dropdown-item" href="#">Last 30 days</a>
  631. <a class="dropdown-item" href="#">Last 3 months</a>
  632. </div>
  633. </div>
  634. </div>
  635. </div>
  636. <div id="chart-social-referrals"></div>
  637. </div>
  638. </div>
  639. </div>
  640. <div class="col-12">
  641. <div class="card">
  642. <div class="card-body">
  643. <div id="chart-tasks-overview"></div>
  644. </div>
  645. </div>
  646. </div>
  647. <div class="col-lg-6 col-xl-4">
  648. <div class="card">
  649. <div class="card-body">
  650. <div id="chart-demo-pie"></div>
  651. </div>
  652. </div>
  653. </div>
  654. <div class="col-lg-6 col-xl-4">
  655. <div class="card">
  656. <div class="card-body">
  657. <div id="chart-completion-tasks"></div>
  658. </div>
  659. </div>
  660. </div>
  661. <div class="col-lg-6 col-xl-4">
  662. <div class="card">
  663. <div class="card-body">
  664. <div id="chart-completion-tasks-2"></div>
  665. </div>
  666. </div>
  667. </div>
  668. <div class="col-lg-6 col-xl-4">
  669. <div class="card">
  670. <div class="card-body">
  671. <div id="chart-completion-tasks-3"></div>
  672. </div>
  673. </div>
  674. </div>
  675. <div class="col-lg-6 col-xl-4">
  676. <div class="card">
  677. <div class="card-body">
  678. <div id="chart-completion-tasks-4"></div>
  679. </div>
  680. </div>
  681. </div>
  682. <div class="col-lg-6 col-xl-4">
  683. <div class="card">
  684. <div class="card-body">
  685. <div id="chart-completion-tasks-5"></div>
  686. </div>
  687. </div>
  688. </div>
  689. <div class="col-lg-6 col-xl-4">
  690. <div class="card">
  691. <div class="card-body">
  692. <div id="chart-completion-tasks-6"></div>
  693. </div>
  694. </div>
  695. </div>
  696. <div class="col-lg-6 col-xl-4">
  697. <div class="card">
  698. <div class="card-body">
  699. <div id="chart-completion-tasks-7"></div>
  700. </div>
  701. </div>
  702. </div>
  703. <div class="col-lg-6 col-xl-4">
  704. <div class="card">
  705. <div class="card-body">
  706. <div id="chart-completion-tasks-8"></div>
  707. </div>
  708. </div>
  709. </div>
  710. <div class="col-lg-6 col-xl-4">
  711. <div class="card">
  712. <div class="card-body">
  713. <div id="chart-completion-tasks-9"></div>
  714. </div>
  715. </div>
  716. </div>
  717. <div class="col-lg-6 col-xl-4">
  718. <div class="card">
  719. <div class="card-body">
  720. <div id="chart-completion-tasks-10"></div>
  721. </div>
  722. </div>
  723. </div>
  724. <div class="col-lg-6 col-xl-4">
  725. <div class="card">
  726. <div class="card-body">
  727. <div id="chart-completion-tasks-11"></div>
  728. </div>
  729. </div>
  730. </div>
  731. <div class="col-lg-6 col-xl-4">
  732. <div class="card">
  733. <div class="card-body">
  734. <div id="chart-tasks"></div>
  735. </div>
  736. </div>
  737. </div>
  738. <div class="col-lg-6 col-xl-4">
  739. <div class="card">
  740. <div class="card-body">
  741. <div id="chart-line-stroke"></div>
  742. </div>
  743. </div>
  744. </div>
  745. <div class="col-lg-6 col-xl-4">
  746. <div class="card">
  747. <div class="card-body">
  748. <div id="chart-stepline"></div>
  749. </div>
  750. </div>
  751. </div>
  752. <div class="col-lg-6 col-xl-4">
  753. <div class="card">
  754. <div class="card-body">
  755. <div id="chart-temperature"></div>
  756. </div>
  757. </div>
  758. </div>
  759. <div class="col-lg-6 col-xl-4">
  760. <div class="card">
  761. <div class="card-body">
  762. <div id="chart-area"></div>
  763. </div>
  764. </div>
  765. </div>
  766. <div class="col-lg-6 col-xl-4">
  767. <div class="card">
  768. <div class="card-body">
  769. <div id="chart-area-spline"></div>
  770. </div>
  771. </div>
  772. </div>
  773. <div class="col-lg-6 col-xl-4">
  774. <div class="card">
  775. <div class="card-body">
  776. <div id="chart-area-spline-stacked"></div>
  777. </div>
  778. </div>
  779. </div>
  780. <div class="col-lg-6 col-xl-4">
  781. <div class="card">
  782. <div class="card-body">
  783. <div id="chart-spline"></div>
  784. </div>
  785. </div>
  786. </div>
  787. <div class="col-lg-6 col-xl-4">
  788. <div class="card">
  789. <div class="card-body">
  790. <div id="chart-scatter"></div>
  791. </div>
  792. </div>
  793. </div>
  794. <div class="col-lg-6 col-xl-4">
  795. <div class="card">
  796. <div class="card-body">
  797. <div id="chart-combination"></div>
  798. </div>
  799. </div>
  800. </div>
  801. </div>
  802. </div>
  803. </div>
  804. <footer class="footer footer-transparent d-print-none">
  805. <div class="container-xl">
  806. <div class="row text-center align-items-center flex-row-reverse">
  807. <div class="col-lg-auto ms-lg-auto">
  808. <ul class="list-inline list-inline-dots mb-0">
  809. <li class="list-inline-item"><a href="./docs/index.html" class="link-secondary">Documentation</a></li>
  810. <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
  811. <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
  812. <li class="list-inline-item">
  813. <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
  814. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  815. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-pink icon-filled icon-inline" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  816. Sponsor
  817. </a>
  818. </li>
  819. </ul>
  820. </div>
  821. <div class="col-12 col-lg-auto mt-3 mt-lg-0">
  822. <ul class="list-inline list-inline-dots mb-0">
  823. <li class="list-inline-item">
  824. Copyright &copy; 2022
  825. <a href="." class="link-secondary">Tabler</a>.
  826. All rights reserved.
  827. </li>
  828. <li class="list-inline-item">
  829. <a href="./changelog.html" class="link-secondary" rel="noopener">
  830. v1.0.0-beta14
  831. </a>
  832. </li>
  833. </ul>
  834. </div>
  835. </div>
  836. </div>
  837. </footer>
  838. </div>
  839. </div>
  840. <!-- Libs JS -->
  841. <script src="./dist/libs/apexcharts/dist/apexcharts.min.js?1666304673" defer></script>
  842. <!-- Tabler Core -->
  843. <script src="./dist/js/tabler.min.js?1666304673" defer></script>
  844. <script src="./dist/js/demo.min.js?1666304673" defer></script>
  845. <script>
  846. // @formatter:off
  847. document.addEventListener("DOMContentLoaded", function () {
  848. window.ApexCharts && (new ApexCharts(document.getElementById('chart-active-users-2'), {
  849. chart: {
  850. type: "line",
  851. fontFamily: 'inherit',
  852. height: 288,
  853. parentHeightOffset: 0,
  854. toolbar: {
  855. show: false,
  856. },
  857. animations: {
  858. enabled: false
  859. },
  860. },
  861. fill: {
  862. opacity: 1,
  863. },
  864. stroke: {
  865. width: 2,
  866. lineCap: "round",
  867. curve: "smooth",
  868. },
  869. series: [{
  870. name: "Mobile",
  871. data: [4164, 4652, 4817, 4841, 4920, 5439, 5486, 5498, 5512, 5538, 5841, 5877, 6086, 6146, 6199, 6431, 6704, 7939, 8127, 8296, 8322, 8389, 8411, 8502, 8868, 8977, 9273, 9325, 9345, 9430]
  872. },{
  873. name: "Desktop",
  874. data: [2164, 2292, 2386, 2430, 2528, 3045, 3255, 3295, 3481, 3604, 3688, 3840, 3932, 3949, 4003, 4298, 4424, 4869, 4922, 4973, 5155, 5267, 5566, 5689, 5692, 5758, 5773, 5799, 5960, 6000]
  875. },{
  876. name: "Tablet",
  877. data: [1069, 1089, 1125, 1141, 1162, 1179, 1185, 1216, 1274, 1322, 1346, 1395, 1439, 1564, 1581, 1590, 1656, 1815, 1868, 2010, 2133, 2179, 2264, 2265, 2278, 2343, 2354, 2456, 2472, 2480]
  878. }],
  879. tooltip: {
  880. theme: 'dark'
  881. },
  882. grid: {
  883. padding: {
  884. top: -20,
  885. right: 0,
  886. left: -4,
  887. bottom: -4
  888. },
  889. strokeDashArray: 4,
  890. },
  891. xaxis: {
  892. labels: {
  893. padding: 0,
  894. },
  895. tooltip: {
  896. enabled: false
  897. },
  898. type: 'datetime',
  899. },
  900. yaxis: {
  901. labels: {
  902. padding: 4
  903. },
  904. },
  905. labels: [
  906. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  907. ],
  908. colors: [tabler.getColor("primary"), tabler.getColor("azure"), tabler.getColor("green")],
  909. legend: {
  910. show: false,
  911. },
  912. })).render();
  913. });
  914. // @formatter:on
  915. </script>
  916. <script>
  917. // @formatter:off
  918. document.addEventListener("DOMContentLoaded", function () {
  919. window.ApexCharts && (new ApexCharts(document.getElementById('chart-social-referrals'), {
  920. chart: {
  921. type: "line",
  922. fontFamily: 'inherit',
  923. height: 288,
  924. parentHeightOffset: 0,
  925. toolbar: {
  926. show: false,
  927. },
  928. animations: {
  929. enabled: false
  930. },
  931. },
  932. fill: {
  933. opacity: 1,
  934. },
  935. stroke: {
  936. width: 2,
  937. lineCap: "round",
  938. curve: "smooth",
  939. },
  940. series: [{
  941. name: "Facebook",
  942. data: [13281, 8521, 15038, 9983, 15417, 8888, 7052, 14270, 5214, 9587, 5950, 16852, 17836, 12217, 17406, 12262, 9147, 14961, 18292, 15230, 13435, 10649, 5140, 13680, 4508, 13271, 13413, 5543, 18727, 18238, 18175, 6246, 5864, 17847, 9170, 6445, 12945, 8142, 8980, 10422, 15535, 11569, 10114, 17621, 16138, 13046, 6652, 9906, 14100, 16495, 6749]
  943. },{
  944. name: "Twitter",
  945. data: [3680, 1862, 3070, 2252, 5348, 3091, 3000, 3984, 5176, 5325, 2420, 5474, 3098, 1893, 3748, 2879, 4197, 5186, 4213, 4334, 2807, 1594, 4863, 2030, 3752, 4856, 5341, 3954, 3461, 3097, 3404, 4949, 2283, 3227, 3630, 2360, 3477, 4675, 1901, 2252, 3347, 2954, 5029, 2079, 2830, 3292, 4578, 3401, 4104, 3749, 4457, 3734]
  946. },{
  947. name: "Dribbble",
  948. data: [722, 1866, 961, 1108, 1110, 561, 1753, 1815, 1985, 776, 859, 547, 1488, 766, 702, 621, 1599, 1372, 1620, 963, 759, 764, 739, 789, 1696, 1454, 1842, 734, 551, 1689, 1924, 1875, 908, 1675, 1541, 1953, 534, 502, 1524, 1867, 719, 1472, 1608, 1025, 889, 1150, 654, 1695, 1662, 1285, 1787]
  949. }],
  950. tooltip: {
  951. theme: 'dark'
  952. },
  953. grid: {
  954. padding: {
  955. top: -20,
  956. right: 0,
  957. left: -4,
  958. bottom: -4
  959. },
  960. strokeDashArray: 4,
  961. xaxis: {
  962. lines: {
  963. show: true
  964. }
  965. },
  966. },
  967. xaxis: {
  968. labels: {
  969. padding: 0,
  970. },
  971. tooltip: {
  972. enabled: false
  973. },
  974. type: 'datetime',
  975. },
  976. yaxis: {
  977. labels: {
  978. padding: 4
  979. },
  980. },
  981. labels: [
  982. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19', '2020-07-20', '2020-07-21', '2020-07-22', '2020-07-23', '2020-07-24', '2020-07-25', '2020-07-26', '2020-07-27', '2020-07-28', '2020-07-29', '2020-07-30', '2020-07-31', '2020-08-01', '2020-08-02', '2020-08-03', '2020-08-04', '2020-08-05', '2020-08-06', '2020-08-07', '2020-08-08', '2020-08-09'
  983. ],
  984. colors: [tabler.getColor("facebook"), tabler.getColor("twitter"), tabler.getColor("dribbble")],
  985. legend: {
  986. show: true,
  987. position: 'bottom',
  988. offsetY: 12,
  989. markers: {
  990. width: 10,
  991. height: 10,
  992. radius: 100,
  993. },
  994. itemMargin: {
  995. horizontal: 8,
  996. vertical: 8
  997. },
  998. },
  999. })).render();
  1000. });
  1001. // @formatter:on
  1002. </script>
  1003. <script>
  1004. // @formatter:off
  1005. document.addEventListener("DOMContentLoaded", function () {
  1006. window.ApexCharts && (new ApexCharts(document.getElementById('chart-tasks-overview'), {
  1007. chart: {
  1008. type: "bar",
  1009. fontFamily: 'inherit',
  1010. height: 320,
  1011. parentHeightOffset: 0,
  1012. toolbar: {
  1013. show: false,
  1014. },
  1015. animations: {
  1016. enabled: false
  1017. },
  1018. },
  1019. plotOptions: {
  1020. bar: {
  1021. columnWidth: '50%',
  1022. }
  1023. },
  1024. dataLabels: {
  1025. enabled: false,
  1026. },
  1027. fill: {
  1028. opacity: 1,
  1029. },
  1030. series: [{
  1031. name: "A",
  1032. data: [44, 32, 48, 72, 60, 16, 44, 32, 78, 50, 68, 34, 26, 48, 72, 60, 84, 64, 74, 52, 62, 50, 32, 22]
  1033. }],
  1034. tooltip: {
  1035. theme: 'dark'
  1036. },
  1037. grid: {
  1038. padding: {
  1039. top: -20,
  1040. right: 0,
  1041. left: -4,
  1042. bottom: -4
  1043. },
  1044. strokeDashArray: 4,
  1045. },
  1046. xaxis: {
  1047. labels: {
  1048. padding: 0,
  1049. },
  1050. tooltip: {
  1051. enabled: false
  1052. },
  1053. axisBorder: {
  1054. show: false,
  1055. },
  1056. categories: ['Sprint 1', 'Sprint 2', 'Sprint 3', 'Sprint 4', 'Sprint 5', 'Sprint 6', 'Sprint 7', 'Sprint 8', 'Sprint 9', 'Sprint 10', 'Sprint 11', 'Sprint 12', 'Sprint 13', 'Sprint 14', 'Sprint 15', 'Sprint 16', 'Sprint 17', 'Sprint 18', 'Sprint 19', 'Sprint 20', 'Sprint 21', 'Sprint 22', 'Sprint 23', 'Sprint 24'],
  1057. },
  1058. yaxis: {
  1059. labels: {
  1060. padding: 4
  1061. },
  1062. },
  1063. colors: [tabler.getColor("primary")],
  1064. legend: {
  1065. show: false,
  1066. },
  1067. })).render();
  1068. });
  1069. // @formatter:on
  1070. </script>
  1071. <script>
  1072. // @formatter:off
  1073. document.addEventListener("DOMContentLoaded", function () {
  1074. window.ApexCharts && (new ApexCharts(document.getElementById('chart-demo-pie'), {
  1075. chart: {
  1076. type: "donut",
  1077. fontFamily: 'inherit',
  1078. height: 240,
  1079. sparkline: {
  1080. enabled: true
  1081. },
  1082. animations: {
  1083. enabled: false
  1084. },
  1085. },
  1086. fill: {
  1087. opacity: 1,
  1088. },
  1089. series: [44, 55, 12, 2],
  1090. labels: ["Direct", "Affilliate", "E-mail", "Other"],
  1091. tooltip: {
  1092. theme: 'dark'
  1093. },
  1094. grid: {
  1095. strokeDashArray: 4,
  1096. },
  1097. colors: [tabler.getColor("primary"), tabler.getColor("primary", 0.8), tabler.getColor("primary", 0.6), tabler.getColor("gray-300")],
  1098. legend: {
  1099. show: true,
  1100. position: 'bottom',
  1101. offsetY: 12,
  1102. markers: {
  1103. width: 10,
  1104. height: 10,
  1105. radius: 100,
  1106. },
  1107. itemMargin: {
  1108. horizontal: 8,
  1109. vertical: 8
  1110. },
  1111. },
  1112. tooltip: {
  1113. fillSeriesColor: false
  1114. },
  1115. })).render();
  1116. });
  1117. // @formatter:on
  1118. </script>
  1119. <script>
  1120. // @formatter:off
  1121. document.addEventListener("DOMContentLoaded", function () {
  1122. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks'), {
  1123. chart: {
  1124. type: "bar",
  1125. fontFamily: 'inherit',
  1126. height: 240,
  1127. parentHeightOffset: 0,
  1128. toolbar: {
  1129. show: false,
  1130. },
  1131. animations: {
  1132. enabled: false
  1133. },
  1134. },
  1135. plotOptions: {
  1136. bar: {
  1137. columnWidth: '50%',
  1138. }
  1139. },
  1140. dataLabels: {
  1141. enabled: false,
  1142. },
  1143. fill: {
  1144. opacity: 1,
  1145. },
  1146. series: [{
  1147. name: "Tasks completion",
  1148. data: [155, 65, 465, 265, 225, 325, 80]
  1149. }],
  1150. tooltip: {
  1151. theme: 'dark'
  1152. },
  1153. grid: {
  1154. padding: {
  1155. top: -20,
  1156. right: 0,
  1157. left: -4,
  1158. bottom: -4
  1159. },
  1160. strokeDashArray: 4,
  1161. },
  1162. xaxis: {
  1163. labels: {
  1164. padding: 0,
  1165. },
  1166. tooltip: {
  1167. enabled: false
  1168. },
  1169. axisBorder: {
  1170. show: false,
  1171. },
  1172. type: 'datetime',
  1173. },
  1174. yaxis: {
  1175. labels: {
  1176. padding: 4
  1177. },
  1178. },
  1179. labels: [
  1180. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1181. ],
  1182. colors: [tabler.getColor("primary")],
  1183. legend: {
  1184. show: false,
  1185. },
  1186. })).render();
  1187. });
  1188. // @formatter:on
  1189. </script>
  1190. <script>
  1191. // @formatter:off
  1192. document.addEventListener("DOMContentLoaded", function () {
  1193. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-2'), {
  1194. chart: {
  1195. type: "line",
  1196. fontFamily: 'inherit',
  1197. height: 240,
  1198. parentHeightOffset: 0,
  1199. toolbar: {
  1200. show: false,
  1201. },
  1202. animations: {
  1203. enabled: false
  1204. },
  1205. },
  1206. fill: {
  1207. opacity: 1,
  1208. },
  1209. stroke: {
  1210. width: 2,
  1211. lineCap: "round",
  1212. curve: "smooth",
  1213. },
  1214. series: [{
  1215. name: "Tasks completion",
  1216. data: [155, 65, 465, 265, 225, 325, 80]
  1217. }],
  1218. tooltip: {
  1219. theme: 'dark'
  1220. },
  1221. grid: {
  1222. padding: {
  1223. top: -20,
  1224. right: 0,
  1225. left: -4,
  1226. bottom: -4
  1227. },
  1228. strokeDashArray: 4,
  1229. },
  1230. xaxis: {
  1231. labels: {
  1232. padding: 0,
  1233. },
  1234. tooltip: {
  1235. enabled: false
  1236. },
  1237. type: 'datetime',
  1238. },
  1239. yaxis: {
  1240. labels: {
  1241. padding: 4
  1242. },
  1243. },
  1244. labels: [
  1245. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1246. ],
  1247. colors: [tabler.getColor("primary")],
  1248. legend: {
  1249. show: false,
  1250. },
  1251. })).render();
  1252. });
  1253. // @formatter:on
  1254. </script>
  1255. <script>
  1256. // @formatter:off
  1257. document.addEventListener("DOMContentLoaded", function () {
  1258. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-3'), {
  1259. chart: {
  1260. type: "area",
  1261. fontFamily: 'inherit',
  1262. height: 240,
  1263. parentHeightOffset: 0,
  1264. toolbar: {
  1265. show: false,
  1266. },
  1267. animations: {
  1268. enabled: false
  1269. },
  1270. },
  1271. dataLabels: {
  1272. enabled: false,
  1273. },
  1274. fill: {
  1275. opacity: .16,
  1276. type: 'solid'
  1277. },
  1278. stroke: {
  1279. width: 2,
  1280. lineCap: "round",
  1281. curve: "smooth",
  1282. },
  1283. series: [{
  1284. name: "Tasks completion",
  1285. data: [155, 65, 465, 265, 225, 325, 80]
  1286. }],
  1287. tooltip: {
  1288. theme: 'dark'
  1289. },
  1290. grid: {
  1291. padding: {
  1292. top: -20,
  1293. right: 0,
  1294. left: -4,
  1295. bottom: -4
  1296. },
  1297. strokeDashArray: 4,
  1298. },
  1299. xaxis: {
  1300. labels: {
  1301. padding: 0,
  1302. },
  1303. tooltip: {
  1304. enabled: false
  1305. },
  1306. axisBorder: {
  1307. show: false,
  1308. },
  1309. type: 'datetime',
  1310. },
  1311. yaxis: {
  1312. labels: {
  1313. padding: 4
  1314. },
  1315. },
  1316. labels: [
  1317. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1318. ],
  1319. colors: [tabler.getColor("primary")],
  1320. legend: {
  1321. show: false,
  1322. },
  1323. })).render();
  1324. });
  1325. // @formatter:on
  1326. </script>
  1327. <script>
  1328. // @formatter:off
  1329. document.addEventListener("DOMContentLoaded", function () {
  1330. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-4'), {
  1331. chart: {
  1332. type: "line",
  1333. fontFamily: 'inherit',
  1334. height: 240,
  1335. parentHeightOffset: 0,
  1336. toolbar: {
  1337. show: false,
  1338. },
  1339. animations: {
  1340. enabled: false
  1341. },
  1342. },
  1343. fill: {
  1344. opacity: 1,
  1345. },
  1346. stroke: {
  1347. width: 2,
  1348. lineCap: "round",
  1349. curve: "straight",
  1350. },
  1351. series: [{
  1352. name: "Tasks completion",
  1353. data: [155, 65, 465, 265, 225, 325, 80]
  1354. }],
  1355. tooltip: {
  1356. theme: 'dark'
  1357. },
  1358. grid: {
  1359. padding: {
  1360. top: -20,
  1361. right: 0,
  1362. left: -4,
  1363. bottom: -4
  1364. },
  1365. strokeDashArray: 4,
  1366. },
  1367. xaxis: {
  1368. labels: {
  1369. padding: 0,
  1370. },
  1371. tooltip: {
  1372. enabled: false
  1373. },
  1374. type: 'datetime',
  1375. },
  1376. yaxis: {
  1377. labels: {
  1378. padding: 4
  1379. },
  1380. },
  1381. labels: [
  1382. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1383. ],
  1384. colors: [tabler.getColor("primary")],
  1385. legend: {
  1386. show: false,
  1387. },
  1388. })).render();
  1389. });
  1390. // @formatter:on
  1391. </script>
  1392. <script>
  1393. // @formatter:off
  1394. document.addEventListener("DOMContentLoaded", function () {
  1395. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-5'), {
  1396. chart: {
  1397. type: "line",
  1398. fontFamily: 'inherit',
  1399. height: 240,
  1400. parentHeightOffset: 0,
  1401. toolbar: {
  1402. show: false,
  1403. },
  1404. animations: {
  1405. enabled: false
  1406. },
  1407. },
  1408. fill: {
  1409. opacity: 1,
  1410. },
  1411. stroke: {
  1412. width: 2,
  1413. lineCap: "round",
  1414. curve: "stepline",
  1415. },
  1416. series: [{
  1417. name: "Tasks completion",
  1418. data: [155, 65, 465, 265, 225, 325, 80]
  1419. }],
  1420. tooltip: {
  1421. theme: 'dark'
  1422. },
  1423. grid: {
  1424. padding: {
  1425. top: -20,
  1426. right: 0,
  1427. left: -4,
  1428. bottom: -4
  1429. },
  1430. strokeDashArray: 4,
  1431. },
  1432. xaxis: {
  1433. labels: {
  1434. padding: 0,
  1435. },
  1436. tooltip: {
  1437. enabled: false
  1438. },
  1439. type: 'datetime',
  1440. },
  1441. yaxis: {
  1442. labels: {
  1443. padding: 4
  1444. },
  1445. },
  1446. labels: [
  1447. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1448. ],
  1449. colors: [tabler.getColor("primary")],
  1450. legend: {
  1451. show: false,
  1452. },
  1453. })).render();
  1454. });
  1455. // @formatter:on
  1456. </script>
  1457. <script>
  1458. // @formatter:off
  1459. document.addEventListener("DOMContentLoaded", function () {
  1460. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-6'), {
  1461. chart: {
  1462. type: "bar",
  1463. fontFamily: 'inherit',
  1464. height: 240,
  1465. parentHeightOffset: 0,
  1466. toolbar: {
  1467. show: false,
  1468. },
  1469. animations: {
  1470. enabled: false
  1471. },
  1472. },
  1473. plotOptions: {
  1474. bar: {
  1475. barHeight: '50%',
  1476. horizontal: true,
  1477. }
  1478. },
  1479. dataLabels: {
  1480. enabled: false,
  1481. },
  1482. fill: {
  1483. opacity: 1,
  1484. },
  1485. series: [{
  1486. name: "Tasks completion",
  1487. data: [155, 65, 465, 265, 225, 325, 80]
  1488. }],
  1489. tooltip: {
  1490. theme: 'dark'
  1491. },
  1492. grid: {
  1493. padding: {
  1494. top: -20,
  1495. right: 0,
  1496. left: -4,
  1497. bottom: -4
  1498. },
  1499. strokeDashArray: 4,
  1500. },
  1501. xaxis: {
  1502. labels: {
  1503. padding: 0,
  1504. },
  1505. tooltip: {
  1506. enabled: false
  1507. },
  1508. axisBorder: {
  1509. show: false,
  1510. },
  1511. type: 'datetime',
  1512. },
  1513. yaxis: {
  1514. labels: {
  1515. padding: 4
  1516. },
  1517. },
  1518. labels: [
  1519. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1520. ],
  1521. colors: [tabler.getColor("primary")],
  1522. legend: {
  1523. show: false,
  1524. },
  1525. })).render();
  1526. });
  1527. // @formatter:on
  1528. </script>
  1529. <script>
  1530. // @formatter:off
  1531. document.addEventListener("DOMContentLoaded", function () {
  1532. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-7'), {
  1533. chart: {
  1534. type: "line",
  1535. fontFamily: 'inherit',
  1536. height: 240,
  1537. parentHeightOffset: 0,
  1538. toolbar: {
  1539. show: false,
  1540. },
  1541. animations: {
  1542. enabled: false
  1543. },
  1544. },
  1545. fill: {
  1546. opacity: 1,
  1547. },
  1548. stroke: {
  1549. width: 2,
  1550. lineCap: "round",
  1551. curve: "smooth",
  1552. },
  1553. series: [{
  1554. name: "Tasks completion",
  1555. data: [155, 65, 465, 265, 225, 325, 80]
  1556. }],
  1557. tooltip: {
  1558. theme: 'dark'
  1559. },
  1560. grid: {
  1561. padding: {
  1562. top: -20,
  1563. right: 0,
  1564. left: -4,
  1565. bottom: -4
  1566. },
  1567. strokeDashArray: 4,
  1568. },
  1569. xaxis: {
  1570. labels: {
  1571. padding: 0,
  1572. },
  1573. tooltip: {
  1574. enabled: false
  1575. },
  1576. type: 'datetime',
  1577. },
  1578. yaxis: {
  1579. labels: {
  1580. padding: 4
  1581. },
  1582. },
  1583. labels: [
  1584. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1585. ],
  1586. colors: [tabler.getColor("primary")],
  1587. legend: {
  1588. show: false,
  1589. },
  1590. })).render();
  1591. });
  1592. // @formatter:on
  1593. </script>
  1594. <script>
  1595. // @formatter:off
  1596. document.addEventListener("DOMContentLoaded", function () {
  1597. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-8'), {
  1598. chart: {
  1599. type: "bar",
  1600. fontFamily: 'inherit',
  1601. height: 240,
  1602. parentHeightOffset: 0,
  1603. toolbar: {
  1604. show: false,
  1605. },
  1606. animations: {
  1607. enabled: false
  1608. },
  1609. },
  1610. plotOptions: {
  1611. bar: {
  1612. columnWidth: '50%',
  1613. }
  1614. },
  1615. dataLabels: {
  1616. enabled: false,
  1617. },
  1618. fill: {
  1619. opacity: 1,
  1620. },
  1621. series: [{
  1622. name: "",
  1623. data: [155, 65, 465, 265, 225, 325, 80]
  1624. },{
  1625. name: "",
  1626. data: [113, 42, 65, 54, 76, 65, 35]
  1627. }],
  1628. tooltip: {
  1629. theme: 'dark'
  1630. },
  1631. grid: {
  1632. padding: {
  1633. top: -20,
  1634. right: 0,
  1635. left: -4,
  1636. bottom: -4
  1637. },
  1638. strokeDashArray: 4,
  1639. },
  1640. xaxis: {
  1641. labels: {
  1642. padding: 0,
  1643. },
  1644. tooltip: {
  1645. enabled: false
  1646. },
  1647. axisBorder: {
  1648. show: false,
  1649. },
  1650. type: 'datetime',
  1651. },
  1652. yaxis: {
  1653. labels: {
  1654. padding: 4
  1655. },
  1656. },
  1657. labels: [
  1658. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1659. ],
  1660. colors: [tabler.getColor("primary"), tabler.getColor("red")],
  1661. legend: {
  1662. show: false,
  1663. },
  1664. })).render();
  1665. });
  1666. // @formatter:on
  1667. </script>
  1668. <script>
  1669. // @formatter:off
  1670. document.addEventListener("DOMContentLoaded", function () {
  1671. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-9'), {
  1672. chart: {
  1673. type: "bar",
  1674. fontFamily: 'inherit',
  1675. height: 240,
  1676. parentHeightOffset: 0,
  1677. toolbar: {
  1678. show: false,
  1679. },
  1680. animations: {
  1681. enabled: false
  1682. },
  1683. stacked: true,
  1684. },
  1685. plotOptions: {
  1686. bar: {
  1687. columnWidth: '50%',
  1688. }
  1689. },
  1690. dataLabels: {
  1691. enabled: false,
  1692. },
  1693. fill: {
  1694. opacity: 1,
  1695. },
  1696. series: [{
  1697. name: "",
  1698. data: [155, 65, 465, 265, 225, 325, 80]
  1699. },{
  1700. name: "",
  1701. data: [113, 42, 65, 54, 76, 65, 35]
  1702. }],
  1703. tooltip: {
  1704. theme: 'dark'
  1705. },
  1706. grid: {
  1707. padding: {
  1708. top: -20,
  1709. right: 0,
  1710. left: -4,
  1711. bottom: -4
  1712. },
  1713. strokeDashArray: 4,
  1714. },
  1715. xaxis: {
  1716. labels: {
  1717. padding: 0,
  1718. },
  1719. tooltip: {
  1720. enabled: false
  1721. },
  1722. axisBorder: {
  1723. show: false,
  1724. },
  1725. type: 'datetime',
  1726. },
  1727. yaxis: {
  1728. labels: {
  1729. padding: 4
  1730. },
  1731. },
  1732. labels: [
  1733. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1734. ],
  1735. colors: [tabler.getColor("primary"), tabler.getColor("red")],
  1736. legend: {
  1737. show: false,
  1738. },
  1739. })).render();
  1740. });
  1741. // @formatter:on
  1742. </script>
  1743. <script>
  1744. // @formatter:off
  1745. document.addEventListener("DOMContentLoaded", function () {
  1746. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-10'), {
  1747. chart: {
  1748. type: "area",
  1749. fontFamily: 'inherit',
  1750. height: 240,
  1751. parentHeightOffset: 0,
  1752. toolbar: {
  1753. show: false,
  1754. },
  1755. animations: {
  1756. enabled: false
  1757. },
  1758. },
  1759. dataLabels: {
  1760. enabled: false,
  1761. },
  1762. fill: {
  1763. opacity: .16,
  1764. type: 'solid'
  1765. },
  1766. stroke: {
  1767. width: 2,
  1768. lineCap: "round",
  1769. curve: "smooth",
  1770. },
  1771. series: [{
  1772. name: "",
  1773. data: [155, 65, 465, 265, 225, 325, 80]
  1774. },{
  1775. name: "",
  1776. data: [113, 42, 65, 54, 76, 65, 35]
  1777. }],
  1778. tooltip: {
  1779. theme: 'dark'
  1780. },
  1781. grid: {
  1782. padding: {
  1783. top: -20,
  1784. right: 0,
  1785. left: -4,
  1786. bottom: -4
  1787. },
  1788. strokeDashArray: 4,
  1789. },
  1790. xaxis: {
  1791. labels: {
  1792. padding: 0,
  1793. },
  1794. tooltip: {
  1795. enabled: false
  1796. },
  1797. axisBorder: {
  1798. show: false,
  1799. },
  1800. type: 'datetime',
  1801. },
  1802. yaxis: {
  1803. labels: {
  1804. padding: 4
  1805. },
  1806. },
  1807. labels: [
  1808. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1809. ],
  1810. colors: [tabler.getColor("primary"), tabler.getColor("red")],
  1811. legend: {
  1812. show: false,
  1813. },
  1814. })).render();
  1815. });
  1816. // @formatter:on
  1817. </script>
  1818. <script>
  1819. // @formatter:off
  1820. document.addEventListener("DOMContentLoaded", function () {
  1821. window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-11'), {
  1822. chart: {
  1823. type: "area",
  1824. fontFamily: 'inherit',
  1825. height: 240,
  1826. parentHeightOffset: 0,
  1827. toolbar: {
  1828. show: false,
  1829. },
  1830. animations: {
  1831. enabled: false
  1832. },
  1833. stacked: true,
  1834. },
  1835. dataLabels: {
  1836. enabled: false,
  1837. },
  1838. fill: {
  1839. opacity: .16,
  1840. type: 'solid'
  1841. },
  1842. stroke: {
  1843. width: 2,
  1844. lineCap: "round",
  1845. curve: "smooth",
  1846. },
  1847. series: [{
  1848. name: "",
  1849. data: [155, 65, 465, 265, 225, 325, 80]
  1850. },{
  1851. name: "",
  1852. data: [113, 42, 65, 54, 76, 65, 35]
  1853. }],
  1854. tooltip: {
  1855. theme: 'dark'
  1856. },
  1857. grid: {
  1858. padding: {
  1859. top: -20,
  1860. right: 0,
  1861. left: -4,
  1862. bottom: -4
  1863. },
  1864. strokeDashArray: 4,
  1865. },
  1866. xaxis: {
  1867. labels: {
  1868. padding: 0,
  1869. },
  1870. tooltip: {
  1871. enabled: false
  1872. },
  1873. axisBorder: {
  1874. show: false,
  1875. },
  1876. type: 'datetime',
  1877. },
  1878. yaxis: {
  1879. labels: {
  1880. padding: 4
  1881. },
  1882. },
  1883. labels: [
  1884. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
  1885. ],
  1886. colors: [tabler.getColor("primary"), tabler.getColor("red")],
  1887. legend: {
  1888. show: false,
  1889. },
  1890. })).render();
  1891. });
  1892. // @formatter:on
  1893. </script>
  1894. <script>
  1895. // @formatter:off
  1896. document.addEventListener("DOMContentLoaded", function () {
  1897. window.ApexCharts && (new ApexCharts(document.getElementById('chart-tasks'), {
  1898. chart: {
  1899. type: "line",
  1900. fontFamily: 'inherit',
  1901. height: 240,
  1902. parentHeightOffset: 0,
  1903. toolbar: {
  1904. show: false,
  1905. },
  1906. animations: {
  1907. enabled: false
  1908. },
  1909. },
  1910. fill: {
  1911. opacity: 1,
  1912. },
  1913. stroke: {
  1914. width: 2,
  1915. lineCap: "round",
  1916. curve: "smooth",
  1917. },
  1918. series: [{
  1919. name: "New",
  1920. data: [0, 0, 1, 2, 21, 9, 12, 10, 31, 13, 65, 10, 12, 6, 4, 3, 0]
  1921. },{
  1922. name: "Completed",
  1923. data: [0, 0, 1, 2, 7, 5, 6, 8, 24, 7, 12, 5, 6, 3, 2, 2, 0]
  1924. },{
  1925. name: "Closed",
  1926. data: [0, 0, 1, 0, 2, 0, 1, 0, 2, 3, 0, 2, 3, 2, 1, 0, 0]
  1927. }],
  1928. tooltip: {
  1929. theme: 'dark'
  1930. },
  1931. grid: {
  1932. padding: {
  1933. top: -20,
  1934. right: 0,
  1935. left: -4,
  1936. bottom: -4
  1937. },
  1938. strokeDashArray: 4,
  1939. },
  1940. xaxis: {
  1941. labels: {
  1942. padding: 0,
  1943. },
  1944. tooltip: {
  1945. enabled: false
  1946. },
  1947. categories: ['M', 'T', 'W', 'T', 'F', 'S', 'S', 'M', 'T', 'W', 'T', 'F', 'S', 'S', 'M', 'T', 'W'],
  1948. },
  1949. yaxis: {
  1950. labels: {
  1951. padding: 4
  1952. },
  1953. },
  1954. colors: [tabler.getColor("primary"), tabler.getColor("lime"), tabler.getColor("orange")],
  1955. legend: {
  1956. show: false,
  1957. },
  1958. tooltip: {
  1959. enabled: false,
  1960. },
  1961. point: {
  1962. show: false
  1963. },
  1964. })).render();
  1965. });
  1966. // @formatter:on
  1967. </script>
  1968. <script>
  1969. // @formatter:off
  1970. document.addEventListener("DOMContentLoaded", function () {
  1971. window.ApexCharts && (new ApexCharts(document.getElementById('chart-line-stroke'), {
  1972. chart: {
  1973. type: "line",
  1974. fontFamily: 'inherit',
  1975. height: 240,
  1976. parentHeightOffset: 0,
  1977. toolbar: {
  1978. show: false,
  1979. },
  1980. animations: {
  1981. enabled: false
  1982. },
  1983. },
  1984. fill: {
  1985. opacity: 1,
  1986. },
  1987. stroke: {
  1988. width: 2,
  1989. lineCap: "round",
  1990. curve: "straight",
  1991. },
  1992. series: [{
  1993. name: "Development",
  1994. data: [8, 10, 11, 12, 20, 27, 30]
  1995. },{
  1996. name: "Marketing",
  1997. data: [3, 16, 17, 19, 20, 30, 30]
  1998. },{
  1999. name: "Sales",
  2000. data: [7, 10, 11, 18, 18, 18, 24]
  2001. }],
  2002. tooltip: {
  2003. theme: 'dark'
  2004. },
  2005. grid: {
  2006. padding: {
  2007. top: -20,
  2008. right: 0,
  2009. left: -4,
  2010. bottom: -4
  2011. },
  2012. strokeDashArray: 4,
  2013. },
  2014. xaxis: {
  2015. labels: {
  2016. padding: 0,
  2017. },
  2018. tooltip: {
  2019. enabled: false
  2020. },
  2021. categories: ['2013', '2014', '2015', '2016', '2017', '2018', '2019'],
  2022. },
  2023. yaxis: {
  2024. labels: {
  2025. padding: 4
  2026. },
  2027. },
  2028. colors: [tabler.getColor("orange"), tabler.getColor("primary"), tabler.getColor("green")],
  2029. legend: {
  2030. show: false,
  2031. },
  2032. })).render();
  2033. });
  2034. // @formatter:on
  2035. </script>
  2036. <script>
  2037. // @formatter:off
  2038. document.addEventListener("DOMContentLoaded", function () {
  2039. window.ApexCharts && (new ApexCharts(document.getElementById('chart-stepline'), {
  2040. chart: {
  2041. type: "line",
  2042. fontFamily: 'inherit',
  2043. height: 240,
  2044. parentHeightOffset: 0,
  2045. toolbar: {
  2046. show: false,
  2047. },
  2048. animations: {
  2049. enabled: false
  2050. },
  2051. },
  2052. fill: {
  2053. opacity: 1,
  2054. },
  2055. stroke: {
  2056. width: 2,
  2057. lineCap: "round",
  2058. curve: "stepline",
  2059. },
  2060. series: [{
  2061. name: "Development",
  2062. data: [34, 44, 54, 21, 12, 43, 33, 23, 66, 66, 58]
  2063. }],
  2064. tooltip: {
  2065. theme: 'dark'
  2066. },
  2067. grid: {
  2068. padding: {
  2069. top: -20,
  2070. right: 0,
  2071. left: -4,
  2072. bottom: -4
  2073. },
  2074. strokeDashArray: 4,
  2075. },
  2076. yaxis: {
  2077. labels: {
  2078. padding: 4
  2079. },
  2080. },
  2081. colors: [tabler.getColor("orange")],
  2082. legend: {
  2083. show: false,
  2084. },
  2085. })).render();
  2086. });
  2087. // @formatter:on
  2088. </script>
  2089. <script>
  2090. // @formatter:off
  2091. document.addEventListener("DOMContentLoaded", function () {
  2092. window.ApexCharts && (new ApexCharts(document.getElementById('chart-temperature'), {
  2093. chart: {
  2094. type: "line",
  2095. fontFamily: 'inherit',
  2096. height: 240,
  2097. parentHeightOffset: 0,
  2098. toolbar: {
  2099. show: false,
  2100. },
  2101. animations: {
  2102. enabled: false
  2103. },
  2104. },
  2105. fill: {
  2106. opacity: 1,
  2107. },
  2108. stroke: {
  2109. width: 2,
  2110. lineCap: "round",
  2111. curve: "smooth",
  2112. },
  2113. series: [{
  2114. name: "Tokyo",
  2115. data: [7.0, 6.9, 9.5, 14.5, 18.4, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
  2116. },{
  2117. name: "London",
  2118. data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
  2119. }],
  2120. tooltip: {
  2121. theme: 'dark'
  2122. },
  2123. grid: {
  2124. padding: {
  2125. top: -20,
  2126. right: 0,
  2127. left: -4,
  2128. bottom: -4
  2129. },
  2130. strokeDashArray: 4,
  2131. },
  2132. dataLabels: {
  2133. enabled: true,
  2134. },
  2135. xaxis: {
  2136. labels: {
  2137. padding: 0,
  2138. },
  2139. tooltip: {
  2140. enabled: false
  2141. },
  2142. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
  2143. },
  2144. yaxis: {
  2145. labels: {
  2146. padding: 4
  2147. },
  2148. },
  2149. colors: [tabler.getColor("primary"), tabler.getColor("green")],
  2150. legend: {
  2151. show: false,
  2152. },
  2153. markers: {
  2154. size: 2
  2155. },
  2156. })).render();
  2157. });
  2158. // @formatter:on
  2159. </script>
  2160. <script>
  2161. // @formatter:off
  2162. document.addEventListener("DOMContentLoaded", function () {
  2163. window.ApexCharts && (new ApexCharts(document.getElementById('chart-area'), {
  2164. chart: {
  2165. type: "area",
  2166. fontFamily: 'inherit',
  2167. height: 240,
  2168. parentHeightOffset: 0,
  2169. toolbar: {
  2170. show: false,
  2171. },
  2172. animations: {
  2173. enabled: false
  2174. },
  2175. },
  2176. dataLabels: {
  2177. enabled: false,
  2178. },
  2179. fill: {
  2180. opacity: .16,
  2181. type: 'solid'
  2182. },
  2183. stroke: {
  2184. width: 2,
  2185. lineCap: "round",
  2186. curve: "smooth",
  2187. },
  2188. series: [{
  2189. name: "Maximum",
  2190. data: [11, 8, 15, 18, 19, 17]
  2191. },{
  2192. name: "Minimum",
  2193. data: [7, 7, 5, 7, 9, 12]
  2194. }],
  2195. tooltip: {
  2196. theme: 'dark'
  2197. },
  2198. grid: {
  2199. padding: {
  2200. top: -20,
  2201. right: 0,
  2202. left: -4,
  2203. bottom: -4
  2204. },
  2205. strokeDashArray: 4,
  2206. },
  2207. xaxis: {
  2208. labels: {
  2209. padding: 0,
  2210. },
  2211. tooltip: {
  2212. enabled: false
  2213. },
  2214. axisBorder: {
  2215. show: false,
  2216. },
  2217. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
  2218. },
  2219. yaxis: {
  2220. labels: {
  2221. padding: 4
  2222. },
  2223. },
  2224. colors: [tabler.getColor("primary"), tabler.getColor("pink")],
  2225. legend: {
  2226. show: false,
  2227. },
  2228. })).render();
  2229. });
  2230. // @formatter:on
  2231. </script>
  2232. <script>
  2233. // @formatter:off
  2234. document.addEventListener("DOMContentLoaded", function () {
  2235. window.ApexCharts && (new ApexCharts(document.getElementById('chart-area-spline'), {
  2236. chart: {
  2237. type: "area",
  2238. fontFamily: 'inherit',
  2239. height: 240,
  2240. parentHeightOffset: 0,
  2241. toolbar: {
  2242. show: false,
  2243. },
  2244. animations: {
  2245. enabled: false
  2246. },
  2247. },
  2248. dataLabels: {
  2249. enabled: false,
  2250. },
  2251. fill: {
  2252. opacity: .16,
  2253. type: 'solid'
  2254. },
  2255. stroke: {
  2256. width: 2,
  2257. lineCap: "round",
  2258. curve: "smooth",
  2259. },
  2260. series: [{
  2261. name: "Maximum",
  2262. data: [11, 8, 15, 18, 19, 17]
  2263. },{
  2264. name: "Minimum",
  2265. data: [7, 7, 5, 7, 9, 12]
  2266. }],
  2267. tooltip: {
  2268. theme: 'dark'
  2269. },
  2270. grid: {
  2271. padding: {
  2272. top: -20,
  2273. right: 0,
  2274. left: -4,
  2275. bottom: -4
  2276. },
  2277. strokeDashArray: 4,
  2278. },
  2279. xaxis: {
  2280. labels: {
  2281. padding: 0,
  2282. },
  2283. tooltip: {
  2284. enabled: false
  2285. },
  2286. axisBorder: {
  2287. show: false,
  2288. },
  2289. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
  2290. },
  2291. yaxis: {
  2292. labels: {
  2293. padding: 4
  2294. },
  2295. },
  2296. colors: [tabler.getColor("primary"), tabler.getColor("pink")],
  2297. legend: {
  2298. show: false,
  2299. },
  2300. })).render();
  2301. });
  2302. // @formatter:on
  2303. </script>
  2304. <script>
  2305. // @formatter:off
  2306. document.addEventListener("DOMContentLoaded", function () {
  2307. window.ApexCharts && (new ApexCharts(document.getElementById('chart-area-spline-stacked'), {
  2308. chart: {
  2309. type: "area",
  2310. fontFamily: 'inherit',
  2311. height: 240,
  2312. parentHeightOffset: 0,
  2313. toolbar: {
  2314. show: false,
  2315. },
  2316. animations: {
  2317. enabled: false
  2318. },
  2319. stacked: true,
  2320. },
  2321. dataLabels: {
  2322. enabled: false,
  2323. },
  2324. fill: {
  2325. opacity: .16,
  2326. type: 'solid'
  2327. },
  2328. stroke: {
  2329. width: 2,
  2330. lineCap: "round",
  2331. curve: "smooth",
  2332. },
  2333. series: [{
  2334. name: "Maximum",
  2335. data: [11, 8, 15, 18, 19, 17]
  2336. },{
  2337. name: "Minimum",
  2338. data: [7, 7, 5, 7, 9, 12]
  2339. }],
  2340. tooltip: {
  2341. theme: 'dark'
  2342. },
  2343. grid: {
  2344. padding: {
  2345. top: -20,
  2346. right: 0,
  2347. left: -4,
  2348. bottom: -4
  2349. },
  2350. strokeDashArray: 4,
  2351. },
  2352. xaxis: {
  2353. labels: {
  2354. padding: 0,
  2355. },
  2356. tooltip: {
  2357. enabled: false
  2358. },
  2359. axisBorder: {
  2360. show: false,
  2361. },
  2362. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
  2363. },
  2364. yaxis: {
  2365. labels: {
  2366. padding: 4
  2367. },
  2368. },
  2369. colors: [tabler.getColor("primary"), tabler.getColor("pink")],
  2370. legend: {
  2371. show: false,
  2372. },
  2373. })).render();
  2374. });
  2375. // @formatter:on
  2376. </script>
  2377. <script>
  2378. // @formatter:off
  2379. document.addEventListener("DOMContentLoaded", function () {
  2380. window.ApexCharts && (new ApexCharts(document.getElementById('chart-spline'), {
  2381. chart: {
  2382. type: "line",
  2383. fontFamily: 'inherit',
  2384. height: 240,
  2385. parentHeightOffset: 0,
  2386. toolbar: {
  2387. show: false,
  2388. },
  2389. animations: {
  2390. enabled: false
  2391. },
  2392. },
  2393. fill: {
  2394. opacity: 1,
  2395. },
  2396. stroke: {
  2397. width: 2,
  2398. lineCap: "round",
  2399. curve: "smooth",
  2400. },
  2401. series: [{
  2402. name: "Hestavollane",
  2403. data: [0.2, 0.8, 0.8, 0.8, 1, 1.3, 1.5, 2.9, 1.9, 2.6, 1.6, 3, 4, 3.6, 4.5, 4.2, 4.5, 4.5, 4, 3.1, 2.7, 4, 2.7, 2.3, 2.3, 4.1, 7.7, 7.1, 5.6, 6.1, 5.8, 8.6, 7.2, 9, 10.9, 11.5, 11.6, 11.1, 12, 12.3, 10.7, 9.4, 9.8, 9.6, 9.8, 9.5, 8.5, 7.4, 7.6]
  2404. },{
  2405. name: "Vik",
  2406. data: [0, 0, 0.6, 0.9, 0.8, 0.2, 0, 0, 0, 0.1, 0.6, 0.7, 0.8, 0.6, 0.2, 0, 0.1, 0.3, 0.3, 0, 0.1, 0, 0, 0, 0.2, 0.1, 0, 0.3, 0, 0.1, 0.2, 0.1, 0.3, 0.3, 0, 3.1, 3.1, 2.5, 1.5, 1.9, 2.1, 1, 2.3, 1.9, 1.2, 0.7, 1.3, 0.4, 0.3]
  2407. }],
  2408. tooltip: {
  2409. theme: 'dark'
  2410. },
  2411. grid: {
  2412. padding: {
  2413. top: -20,
  2414. right: 0,
  2415. left: -4,
  2416. bottom: -4
  2417. },
  2418. strokeDashArray: 4,
  2419. },
  2420. xaxis: {
  2421. labels: {
  2422. padding: 0,
  2423. },
  2424. tooltip: {
  2425. enabled: false
  2426. },
  2427. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
  2428. },
  2429. yaxis: {
  2430. labels: {
  2431. padding: 4
  2432. },
  2433. },
  2434. colors: [tabler.getColor("primary"), tabler.getColor("green")],
  2435. legend: {
  2436. show: false,
  2437. },
  2438. })).render();
  2439. });
  2440. // @formatter:on
  2441. </script>
  2442. <script>
  2443. // @formatter:off
  2444. document.addEventListener("DOMContentLoaded", function () {
  2445. window.ApexCharts && (new ApexCharts(document.getElementById('chart-scatter'), {
  2446. chart: {
  2447. type: "scatter",
  2448. fontFamily: 'inherit',
  2449. height: 240,
  2450. parentHeightOffset: 0,
  2451. toolbar: {
  2452. show: false,
  2453. },
  2454. animations: {
  2455. enabled: false
  2456. },
  2457. },
  2458. fill: {
  2459. opacity: 1,
  2460. },
  2461. series: [{
  2462. name: "Maximum",
  2463. data: [11, 8, 15, 18, 19, 17]
  2464. },{
  2465. name: "Minimum",
  2466. data: [7, 7, 5, 7, 9, 12]
  2467. }],
  2468. tooltip: {
  2469. theme: 'dark'
  2470. },
  2471. grid: {
  2472. padding: {
  2473. top: -20,
  2474. right: 0,
  2475. left: -4,
  2476. bottom: -4
  2477. },
  2478. strokeDashArray: 4,
  2479. },
  2480. xaxis: {
  2481. labels: {
  2482. padding: 0,
  2483. },
  2484. tooltip: {
  2485. enabled: false
  2486. },
  2487. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
  2488. },
  2489. yaxis: {
  2490. labels: {
  2491. padding: 4
  2492. },
  2493. },
  2494. colors: [tabler.getColor("primary"), tabler.getColor("pink")],
  2495. legend: {
  2496. show: false,
  2497. },
  2498. })).render();
  2499. });
  2500. // @formatter:on
  2501. </script>
  2502. <script>
  2503. // @formatter:off
  2504. document.addEventListener("DOMContentLoaded", function () {
  2505. window.ApexCharts && (new ApexCharts(document.getElementById('chart-combination'), {
  2506. chart: {
  2507. type: "bar",
  2508. fontFamily: 'inherit',
  2509. height: 240,
  2510. parentHeightOffset: 0,
  2511. toolbar: {
  2512. show: false,
  2513. },
  2514. animations: {
  2515. enabled: false
  2516. },
  2517. },
  2518. plotOptions: {
  2519. bar: {
  2520. columnWidth: '50%',
  2521. }
  2522. },
  2523. dataLabels: {
  2524. enabled: false,
  2525. },
  2526. fill: {
  2527. opacity: 1,
  2528. },
  2529. series: [{
  2530. name: "Development",
  2531. data: [30, 20, 50, 40, 60, 50]
  2532. },{
  2533. name: "Marketing",
  2534. data: [200, 130, 90, 240, 130, 220]
  2535. },{
  2536. name: "Sales",
  2537. data: [300, 200, 160, 400, 250, 250]
  2538. },{
  2539. name: "Sales",
  2540. data: [200, 130, 90, 240, 130, 220]
  2541. }],
  2542. tooltip: {
  2543. theme: 'dark'
  2544. },
  2545. grid: {
  2546. padding: {
  2547. top: -20,
  2548. right: 0,
  2549. left: -4,
  2550. bottom: -4
  2551. },
  2552. strokeDashArray: 4,
  2553. },
  2554. xaxis: {
  2555. labels: {
  2556. padding: 0,
  2557. },
  2558. tooltip: {
  2559. enabled: false
  2560. },
  2561. axisBorder: {
  2562. show: false,
  2563. },
  2564. categories: ['2013', '2014', '2015', '2016', '2017', '2018'],
  2565. },
  2566. yaxis: {
  2567. labels: {
  2568. padding: 4
  2569. },
  2570. },
  2571. colors: [tabler.getColor("green"), tabler.getColor("pink"), tabler.getColor("green"), tabler.getColor("primary")],
  2572. legend: {
  2573. show: false,
  2574. },
  2575. })).render();
  2576. });
  2577. // @formatter:on
  2578. </script>
  2579. </body>
  2580. </html>