charts.html 91 KB

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