charts.html 92 KB

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