123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646 |
- <!doctype html>
- <!--
- * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
- * @version 1.0.0-beta20
- * @link https://tabler.io
- * Copyright 2018-2023 The Tabler Authors
- * Copyright 2018-2023 codecalm.net Paweł Kuna
- * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
- -->
- <html lang="en">
- <head>
- <meta charset="utf-8"/>
- <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
- <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
- <title>Charts - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
- <!-- CSS files -->
- <link href="./dist/css/tabler.min.css?1692870487" rel="stylesheet"/>
- <link href="./dist/css/tabler-flags.min.css?1692870487" rel="stylesheet"/>
- <link href="./dist/css/tabler-payments.min.css?1692870487" rel="stylesheet"/>
- <link href="./dist/css/tabler-vendors.min.css?1692870487" rel="stylesheet"/>
- <link href="./dist/css/demo.min.css?1692870487" rel="stylesheet"/>
- <style>
- @import url('https://rsms.me/inter/inter.css');
- :root {
- --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
- }
- body {
- font-feature-settings: "cv03", "cv04", "cv11";
- }
- </style>
- </head>
- <body >
- <script src="./dist/js/demo-theme.min.js?1692870487"></script>
- <div class="page">
- <!-- Navbar -->
- <header class="navbar navbar-expand-md d-print-none" >
- <div class="container-xl">
- <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">
- <span class="navbar-toggler-icon"></span>
- </button>
- <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
- <a href=".">
- <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
- </a>
- </h1>
- <div class="navbar-nav flex-row order-md-last">
- <div class="nav-item d-none d-md-flex me-3">
- <div class="btn-list">
- <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
- <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
- <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>
- Source code
- </a>
- <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
- <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
- <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>
- Sponsor
- </a>
- </div>
- </div>
- <div class="d-none d-md-flex">
- <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
- data-bs-placement="bottom">
- <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
- <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>
- </a>
- <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
- data-bs-placement="bottom">
- <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
- <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>
- </a>
- <div class="nav-item dropdown d-none d-md-flex me-3">
- <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
- <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
- <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>
- <span class="badge bg-red"></span>
- </a>
- <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
- <div class="card">
- <div class="card-header">
- <h3 class="card-title">Last updates</h3>
- </div>
- <div class="list-group list-group-flush list-group-hoverable">
- <div class="list-group-item">
- <div class="row align-items-center">
- <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
- <div class="col text-truncate">
- <a href="#" class="text-body d-block">Example 1</a>
- <div class="d-block text-secondary text-truncate mt-n1">
- Change deprecated html tags to text decoration classes (#29604)
- </div>
- </div>
- <div class="col-auto">
- <a href="#" class="list-group-item-actions">
- <!-- Download SVG icon from http://tabler-icons.io/i/star -->
- <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>
- </a>
- </div>
- </div>
- </div>
- <div class="list-group-item">
- <div class="row align-items-center">
- <div class="col-auto"><span class="status-dot d-block"></span></div>
- <div class="col text-truncate">
- <a href="#" class="text-body d-block">Example 2</a>
- <div class="d-block text-secondary text-truncate mt-n1">
- justify-content:between ⇒ justify-content:space-between (#29734)
- </div>
- </div>
- <div class="col-auto">
- <a href="#" class="list-group-item-actions show">
- <!-- Download SVG icon from http://tabler-icons.io/i/star -->
- <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>
- </a>
- </div>
- </div>
- </div>
- <div class="list-group-item">
- <div class="row align-items-center">
- <div class="col-auto"><span class="status-dot d-block"></span></div>
- <div class="col text-truncate">
- <a href="#" class="text-body d-block">Example 3</a>
- <div class="d-block text-secondary text-truncate mt-n1">
- Update change-version.js (#29736)
- </div>
- </div>
- <div class="col-auto">
- <a href="#" class="list-group-item-actions">
- <!-- Download SVG icon from http://tabler-icons.io/i/star -->
- <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>
- </a>
- </div>
- </div>
- </div>
- <div class="list-group-item">
- <div class="row align-items-center">
- <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
- <div class="col text-truncate">
- <a href="#" class="text-body d-block">Example 4</a>
- <div class="d-block text-secondary text-truncate mt-n1">
- Regenerate package-lock.json (#29730)
- </div>
- </div>
- <div class="col-auto">
- <a href="#" class="list-group-item-actions">
- <!-- Download SVG icon from http://tabler-icons.io/i/star -->
- <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>
- </a>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="nav-item dropdown">
- <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
- <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
- <div class="d-none d-xl-block ps-2">
- <div>Paweł Kuna</div>
- <div class="mt-1 small text-secondary">UI Designer</div>
- </div>
- </a>
- <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
- <a href="#" class="dropdown-item">Status</a>
- <a href="./profile.html" class="dropdown-item">Profile</a>
- <a href="#" class="dropdown-item">Feedback</a>
- <div class="dropdown-divider"></div>
- <a href="./settings.html" class="dropdown-item">Settings</a>
- <a href="./sign-in.html" class="dropdown-item">Logout</a>
- </div>
- </div>
- </div>
- </div>
- </header>
- <header class="navbar-expand-md">
- <div class="collapse navbar-collapse" id="navbar-menu">
- <div class="navbar">
- <div class="container-xl">
- <ul class="navbar-nav">
- <li class="nav-item">
- <a class="nav-link" href="./" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/home -->
- <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>
- </span>
- <span class="nav-link-title">
- Home
- </span>
- </a>
- </li>
- <li class="nav-item active dropdown">
- <a class="nav-link dropdown-toggle" href="#navbar-base" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/package -->
- <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>
- </span>
- <span class="nav-link-title">
- Interface
- </span>
- </a>
- <div class="dropdown-menu">
- <div class="dropdown-menu-columns">
- <div class="dropdown-menu-column">
- <a class="dropdown-item" href="./alerts.html">
- Alerts
- </a>
- <a class="dropdown-item" href="./accordion.html">
- Accordion
- </a>
- <div class="dropend">
- <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
- Authentication
- </a>
- <div class="dropdown-menu">
- <a href="./sign-in.html" class="dropdown-item">
- Sign in
- </a>
- <a href="./sign-in-link.html" class="dropdown-item">
- Sign in link
- </a>
- <a href="./sign-in-illustration.html" class="dropdown-item">
- Sign in with illustration
- </a>
- <a href="./sign-in-cover.html" class="dropdown-item">
- Sign in with cover
- </a>
- <a href="./sign-up.html" class="dropdown-item">
- Sign up
- </a>
- <a href="./forgot-password.html" class="dropdown-item">
- Forgot password
- </a>
- <a href="./terms-of-service.html" class="dropdown-item">
- Terms of service
- </a>
- <a href="./auth-lock.html" class="dropdown-item">
- Lock screen
- </a>
- <a href="./2-step-verification.html" class="dropdown-item">
- 2 step verification
- </a>
- <a href="./2-step-verification-code.html" class="dropdown-item">
- 2 step verification code
- </a>
- </div>
- </div>
- <a class="dropdown-item" href="./blank.html">
- Blank page
- </a>
- <a class="dropdown-item" href="./badges.html">
- Badges
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./buttons.html">
- Buttons
- </a>
- <div class="dropend">
- <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
- Cards
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <div class="dropdown-menu">
- <a href="./cards.html" class="dropdown-item">
- Sample cards
- </a>
- <a href="./card-actions.html" class="dropdown-item">
- Card actions
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a href="./cards-masonry.html" class="dropdown-item">
- Cards Masonry
- </a>
- </div>
- </div>
- <a class="dropdown-item" href="./carousel.html">
- Carousel
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item active" href="./charts.html">
- Charts
- </a>
- <a class="dropdown-item" href="./colors.html">
- Colors
- </a>
- <a class="dropdown-item" href="./colorpicker.html">
- Color picker
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./datagrid.html">
- Data grid
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./datatables.html">
- Datatables
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./dropdowns.html">
- Dropdowns
- </a>
- <a class="dropdown-item" href="./dropzone.html">
- Dropzone
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <div class="dropend">
- <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
- Error pages
- </a>
- <div class="dropdown-menu">
- <a href="./error-404.html" class="dropdown-item">
- 404 page
- </a>
- <a href="./error-500.html" class="dropdown-item">
- 500 page
- </a>
- <a href="./error-maintenance.html" class="dropdown-item">
- Maintenance page
- </a>
- </div>
- </div>
- <a class="dropdown-item" href="./flags.html">
- Flags
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./inline-player.html">
- Inline player
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- </div>
- <div class="dropdown-menu-column">
- <a class="dropdown-item" href="./lightbox.html">
- Lightbox
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./lists.html">
- Lists
- </a>
- <a class="dropdown-item" href="./modals.html">
- Modal
- </a>
- <a class="dropdown-item" href="./maps.html">
- Map
- </a>
- <a class="dropdown-item" href="./map-fullsize.html">
- Map fullsize
- </a>
- <a class="dropdown-item" href="./maps-vector.html">
- Map vector
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./markdown.html">
- Markdown
- </a>
- <a class="dropdown-item" href="./navigation.html">
- Navigation
- </a>
- <a class="dropdown-item" href="./offcanvas.html">
- Offcanvas
- </a>
- <a class="dropdown-item" href="./pagination.html">
- <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
- Pagination
- </a>
- <a class="dropdown-item" href="./placeholder.html">
- Placeholder
- </a>
- <a class="dropdown-item" href="./steps.html">
- Steps
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./stars-rating.html">
- Stars rating
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./tabs.html">
- Tabs
- </a>
- <a class="dropdown-item" href="./tags.html">
- Tags
- </a>
- <a class="dropdown-item" href="./tables.html">
- Tables
- </a>
- <a class="dropdown-item" href="./typography.html">
- Typography
- </a>
- <a class="dropdown-item" href="./tinymce.html">
- TinyMCE
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- </div>
- </div>
- </div>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="./form-elements.html" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
- <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>
- </span>
- <span class="nav-link-title">
- Form elements
- </span>
- </a>
- </li>
- <li class="nav-item dropdown">
- <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
- <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>
- </span>
- <span class="nav-link-title">
- Extra
- </span>
- </a>
- <div class="dropdown-menu">
- <div class="dropdown-menu-columns">
- <div class="dropdown-menu-column">
- <a class="dropdown-item" href="./empty.html">
- Empty page
- </a>
- <a class="dropdown-item" href="./cookie-banner.html">
- Cookie banner
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./chat.html">
- Chat
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./activity.html">
- Activity
- </a>
- <a class="dropdown-item" href="./gallery.html">
- Gallery
- </a>
- <a class="dropdown-item" href="./invoice.html">
- Invoice
- </a>
- <a class="dropdown-item" href="./search-results.html">
- Search results
- </a>
- <a class="dropdown-item" href="./pricing.html">
- Pricing cards
- </a>
- <a class="dropdown-item" href="./pricing-table.html">
- Pricing table
- </a>
- <a class="dropdown-item" href="./faq.html">
- FAQ
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./users.html">
- Users
- </a>
- <a class="dropdown-item" href="./license.html">
- License
- </a>
- </div>
- <div class="dropdown-menu-column">
- <a class="dropdown-item" href="./logs.html">
- Logs
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./music.html">
- Music
- </a>
- <a class="dropdown-item" href="./photogrid.html">
- Photogrid
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./tasks.html">
- Tasks
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./uptime.html">
- Uptime monitor
- </a>
- <a class="dropdown-item" href="./widgets.html">
- Widgets
- </a>
- <a class="dropdown-item" href="./wizard.html">
- Wizard
- </a>
- <a class="dropdown-item" href="./settings.html">
- Settings
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./trial-ended.html">
- Trial ended
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./job-listing.html">
- Job listing
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./page-loader.html">
- Page loader
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- </div>
- </div>
- </div>
- </li>
- <li class="nav-item dropdown">
- <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
- <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>
- </span>
- <span class="nav-link-title">
- Layout
- </span>
- </a>
- <div class="dropdown-menu">
- <div class="dropdown-menu-columns">
- <div class="dropdown-menu-column">
- <a class="dropdown-item" href="./layout-horizontal.html">
- Horizontal
- </a>
- <a class="dropdown-item" href="./layout-boxed.html">
- Boxed
- <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
- </a>
- <a class="dropdown-item" href="./layout-vertical.html">
- Vertical
- </a>
- <a class="dropdown-item" href="./layout-vertical-transparent.html">
- Vertical transparent
- </a>
- <a class="dropdown-item" href="./layout-vertical-right.html">
- Right vertical
- </a>
- <a class="dropdown-item" href="./layout-condensed.html">
- Condensed
- </a>
- <a class="dropdown-item" href="./layout-combo.html">
- Combined
- </a>
- </div>
- <div class="dropdown-menu-column">
- <a class="dropdown-item" href="./layout-navbar-dark.html">
- Navbar dark
- </a>
- <a class="dropdown-item" href="./layout-navbar-sticky.html">
- Navbar sticky
- </a>
- <a class="dropdown-item" href="./layout-navbar-overlap.html">
- Navbar overlap
- </a>
- <a class="dropdown-item" href="./layout-rtl.html">
- RTL mode
- </a>
- <a class="dropdown-item" href="./layout-fluid.html">
- Fluid
- </a>
- <a class="dropdown-item" href="./layout-fluid-vertical.html">
- Fluid vertical
- </a>
- </div>
- </div>
- </div>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="./icons.html" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
- <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>
- </span>
- <span class="nav-link-title">
- 4637 icons
- </span>
- </a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="./emails.html" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/mail-opened -->
- <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>
- </span>
- <span class="nav-link-title">
- Email templates
- </span>
- </a>
- </li>
- <li class="nav-item dropdown">
- <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
- <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
- <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>
- </span>
- <span class="nav-link-title">
- Help
- </span>
- </a>
- <div class="dropdown-menu">
- <a class="dropdown-item" href="https://tabler.io/docs" target="_blank" rel="noopener">
- Documentation
- </a>
- <a class="dropdown-item" href="./changelog.html">
- Changelog
- </a>
- <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
- Source code
- </a>
- <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
- <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
- <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>
- Sponsor project!
- </a>
- </div>
- </li>
- </ul>
- <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
- <form action="./" method="get" autocomplete="off" novalidate>
- <div class="input-icon">
- <span class="input-icon-addon">
- <!-- Download SVG icon from http://tabler-icons.io/i/search -->
- <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>
- </span>
- <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- </header>
- <div class="page-wrapper">
- <!-- Page header -->
- <div class="page-header d-print-none">
- <div class="container-xl">
- <div class="row g-2 align-items-center">
- <div class="col">
- <h2 class="page-title">
- Charts
- </h2>
- </div>
- </div>
- </div>
- </div>
- <!-- Page body -->
- <div class="page-body">
- <div class="container-xl">
- <div class="row row-cards">
- <div class="col-lg-6">
- <div class="card">
- <div class="card-body">
- <div class="d-flex">
- <h3 class="card-title">Active users</h3>
- <div class="ms-auto">
- <div class="dropdown">
- <a class="dropdown-toggle text-secondary" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
- <div class="dropdown-menu dropdown-menu-end">
- <a class="dropdown-item active" href="#">Last 7 days</a>
- <a class="dropdown-item" href="#">Last 30 days</a>
- <a class="dropdown-item" href="#">Last 3 months</a>
- </div>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col">
- <div id="chart-active-users-2"></div>
- </div>
- <div class="col-md-auto">
- <div class="divide-y divide-y-fill">
- <div class="px-3">
- <div class="text-secondary">
- <span class="status-dot bg-primary"></span> Mobile
- </div>
- <div class="h2">11,425</div>
- </div>
- <div class="px-3">
- <div class="text-secondary">
- <span class="status-dot bg-azure"></span> Desktop
- </div>
- <div class="h2">6,458</div>
- </div>
- <div class="px-3">
- <div class="text-secondary">
- <span class="status-dot bg-green"></span> Tablet
- </div>
- <div class="h2">3,985</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="col-4">
- </div>
- <div class="col-12">
- <div class="card">
- <div class="card-body">
- <div class="d-flex">
- <h3 class="card-title">Social referrals</h3>
- <div class="ms-auto">
- <div class="dropdown">
- <a class="dropdown-toggle text-secondary" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
- <div class="dropdown-menu dropdown-menu-end">
- <a class="dropdown-item active" href="#">Last 7 days</a>
- <a class="dropdown-item" href="#">Last 30 days</a>
- <a class="dropdown-item" href="#">Last 3 months</a>
- </div>
- </div>
- </div>
- </div>
- <div id="chart-social-referrals"></div>
- </div>
- </div>
- </div>
- <div class="col-12">
- <div class="card">
- <div class="card-body">
- <div id="chart-tasks-overview"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-demo-pie"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-2"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-3"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-4"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-5"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-6"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-7"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-8"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-9"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-10"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-completion-tasks-11"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-tasks"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-line-stroke"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-stepline"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-temperature"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-area"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-area-spline"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-area-spline-stacked"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-spline"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-scatter"></div>
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-xl-4">
- <div class="card">
- <div class="card-body">
- <div id="chart-combination"></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <footer class="footer footer-transparent d-print-none">
- <div class="container-xl">
- <div class="row text-center align-items-center flex-row-reverse">
- <div class="col-lg-auto ms-lg-auto">
- <ul class="list-inline list-inline-dots mb-0">
- <li class="list-inline-item"><a href="https://tabler.io/docs" target="_blank" class="link-secondary" rel="noopener">Documentation</a></li>
- <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
- <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
- <li class="list-inline-item">
- <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
- <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
- <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>
- Sponsor
- </a>
- </li>
- </ul>
- </div>
- <div class="col-12 col-lg-auto mt-3 mt-lg-0">
- <ul class="list-inline list-inline-dots mb-0">
- <li class="list-inline-item">
- Copyright © 2023
- <a href="." class="link-secondary">Tabler</a>.
- All rights reserved.
- </li>
- <li class="list-inline-item">
- <a href="./changelog.html" class="link-secondary" rel="noopener">
- v1.0.0-beta20
- </a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </footer>
- </div>
- </div>
- <!-- Libs JS -->
- <script src="./dist/libs/apexcharts/dist/apexcharts.min.js?1692870487" defer></script>
- <!-- Tabler Core -->
- <script src="./dist/js/tabler.min.js?1692870487" defer></script>
- <script src="./dist/js/demo.min.js?1692870487" defer></script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-active-users-2'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 288,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Mobile",
- 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]
- },{
- name: "Desktop",
- 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]
- },{
- name: "Tablet",
- 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]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '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'
- ],
- colors: [tabler.getColor("primary"), tabler.getColor("azure"), tabler.getColor("green")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-social-referrals'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 288,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Facebook",
- 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]
- },{
- name: "Twitter",
- 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]
- },{
- name: "Dribbble",
- 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]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- xaxis: {
- lines: {
- show: true
- }
- },
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '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'
- ],
- colors: [tabler.getColor("facebook"), tabler.getColor("twitter"), tabler.getColor("dribbble")],
- legend: {
- show: true,
- position: 'bottom',
- offsetY: 12,
- markers: {
- width: 10,
- height: 10,
- radius: 100,
- },
- itemMargin: {
- horizontal: 8,
- vertical: 8
- },
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-tasks-overview'), {
- chart: {
- type: "bar",
- fontFamily: 'inherit',
- height: 320,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- plotOptions: {
- bar: {
- columnWidth: '50%',
- }
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: 1,
- },
- series: [{
- name: "A",
- 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]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- 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'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-demo-pie'), {
- chart: {
- type: "donut",
- fontFamily: 'inherit',
- height: 240,
- sparkline: {
- enabled: true
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- series: [44, 55, 12, 2],
- labels: ["Direct", "Affilliate", "E-mail", "Other"],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- strokeDashArray: 4,
- },
- colors: [tabler.getColor("primary"), tabler.getColor("primary", 0.8), tabler.getColor("primary", 0.6), tabler.getColor("gray-300")],
- legend: {
- show: true,
- position: 'bottom',
- offsetY: 12,
- markers: {
- width: 10,
- height: 10,
- radius: 100,
- },
- itemMargin: {
- horizontal: 8,
- vertical: 8
- },
- },
- tooltip: {
- fillSeriesColor: false
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks'), {
- chart: {
- type: "bar",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- plotOptions: {
- bar: {
- columnWidth: '50%',
- }
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: 1,
- },
- series: [{
- name: "Tasks completion",
- data: [155, 65, 465, 265, 225, 325, 80]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-2'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Tasks completion",
- data: [155, 65, 465, 265, 225, 325, 80]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-3'), {
- chart: {
- type: "area",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: .16,
- type: 'solid'
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Tasks completion",
- data: [155, 65, 465, 265, 225, 325, 80]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-4'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "straight",
- },
- series: [{
- name: "Tasks completion",
- data: [155, 65, 465, 265, 225, 325, 80]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-5'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "stepline",
- },
- series: [{
- name: "Tasks completion",
- data: [155, 65, 465, 265, 225, 325, 80]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-6'), {
- chart: {
- type: "bar",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- plotOptions: {
- bar: {
- barHeight: '50%',
- horizontal: true,
- }
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: 1,
- },
- series: [{
- name: "Tasks completion",
- data: [155, 65, 465, 265, 225, 325, 80]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-7'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Tasks completion",
- data: [155, 65, 465, 265, 225, 325, 80]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-8'), {
- chart: {
- type: "bar",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- plotOptions: {
- bar: {
- columnWidth: '50%',
- }
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: 1,
- },
- series: [{
- name: "",
- data: [155, 65, 465, 265, 225, 325, 80]
- },{
- name: "",
- data: [113, 42, 65, 54, 76, 65, 35]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary"), tabler.getColor("red")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-9'), {
- chart: {
- type: "bar",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- stacked: true,
- },
- plotOptions: {
- bar: {
- columnWidth: '50%',
- }
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: 1,
- },
- series: [{
- name: "",
- data: [155, 65, 465, 265, 225, 325, 80]
- },{
- name: "",
- data: [113, 42, 65, 54, 76, 65, 35]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary"), tabler.getColor("red")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-10'), {
- chart: {
- type: "area",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: .16,
- type: 'solid'
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "",
- data: [155, 65, 465, 265, 225, 325, 80]
- },{
- name: "",
- data: [113, 42, 65, 54, 76, 65, 35]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary"), tabler.getColor("red")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-completion-tasks-11'), {
- chart: {
- type: "area",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- stacked: true,
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: .16,
- type: 'solid'
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "",
- data: [155, 65, 465, 265, 225, 325, 80]
- },{
- name: "",
- data: [113, 42, 65, 54, 76, 65, 35]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- type: 'datetime',
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- labels: [
- '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26'
- ],
- colors: [tabler.getColor("primary"), tabler.getColor("red")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-tasks'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "New",
- data: [0, 0, 1, 2, 21, 9, 12, 10, 31, 13, 65, 10, 12, 6, 4, 3, 0]
- },{
- name: "Completed",
- data: [0, 0, 1, 2, 7, 5, 6, 8, 24, 7, 12, 5, 6, 3, 2, 2, 0]
- },{
- name: "Closed",
- data: [0, 0, 1, 0, 2, 0, 1, 0, 2, 3, 0, 2, 3, 2, 1, 0, 0]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- categories: ['M', 'T', 'W', 'T', 'F', 'S', 'S', 'M', 'T', 'W', 'T', 'F', 'S', 'S', 'M', 'T', 'W'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary"), tabler.getColor("lime"), tabler.getColor("orange")],
- legend: {
- show: false,
- },
- tooltip: {
- enabled: false,
- },
- point: {
- show: false
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-line-stroke'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "straight",
- },
- series: [{
- name: "Development",
- data: [8, 10, 11, 12, 20, 27, 30]
- },{
- name: "Marketing",
- data: [3, 16, 17, 19, 20, 30, 30]
- },{
- name: "Sales",
- data: [7, 10, 11, 18, 18, 18, 24]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- categories: ['2013', '2014', '2015', '2016', '2017', '2018', '2019'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("orange"), tabler.getColor("primary"), tabler.getColor("green")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-stepline'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "stepline",
- },
- series: [{
- name: "Development",
- data: [34, 44, 54, 21, 12, 43, 33, 23, 66, 66, 58]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("orange")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-temperature'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Tokyo",
- 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]
- },{
- name: "London",
- 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]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- dataLabels: {
- enabled: true,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary"), tabler.getColor("green")],
- legend: {
- show: false,
- },
- markers: {
- size: 2
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-area'), {
- chart: {
- type: "area",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: .16,
- type: 'solid'
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Maximum",
- data: [11, 8, 15, 18, 19, 17]
- },{
- name: "Minimum",
- data: [7, 7, 5, 7, 9, 12]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary"), tabler.getColor("pink")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-area-spline'), {
- chart: {
- type: "area",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: .16,
- type: 'solid'
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Maximum",
- data: [11, 8, 15, 18, 19, 17]
- },{
- name: "Minimum",
- data: [7, 7, 5, 7, 9, 12]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary"), tabler.getColor("pink")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-area-spline-stacked'), {
- chart: {
- type: "area",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- stacked: true,
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: .16,
- type: 'solid'
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Maximum",
- data: [11, 8, 15, 18, 19, 17]
- },{
- name: "Minimum",
- data: [7, 7, 5, 7, 9, 12]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary"), tabler.getColor("pink")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-spline'), {
- chart: {
- type: "line",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- stroke: {
- width: 2,
- lineCap: "round",
- curve: "smooth",
- },
- series: [{
- name: "Hestavollane",
- 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]
- },{
- name: "Vik",
- 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]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary"), tabler.getColor("green")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-scatter'), {
- chart: {
- type: "scatter",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- fill: {
- opacity: 1,
- },
- series: [{
- name: "Maximum",
- data: [11, 8, 15, 18, 19, 17]
- },{
- name: "Minimum",
- data: [7, 7, 5, 7, 9, 12]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("primary"), tabler.getColor("pink")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- <script>
- // @formatter:off
- document.addEventListener("DOMContentLoaded", function () {
- window.ApexCharts && (new ApexCharts(document.getElementById('chart-combination'), {
- chart: {
- type: "bar",
- fontFamily: 'inherit',
- height: 240,
- parentHeightOffset: 0,
- toolbar: {
- show: false,
- },
- animations: {
- enabled: false
- },
- },
- plotOptions: {
- bar: {
- columnWidth: '50%',
- }
- },
- dataLabels: {
- enabled: false,
- },
- fill: {
- opacity: 1,
- },
- series: [{
- name: "Development",
- data: [30, 20, 50, 40, 60, 50]
- },{
- name: "Marketing",
- data: [200, 130, 90, 240, 130, 220]
- },{
- name: "Sales",
- data: [300, 200, 160, 400, 250, 250]
- },{
- name: "Sales",
- data: [200, 130, 90, 240, 130, 220]
- }],
- tooltip: {
- theme: 'dark'
- },
- grid: {
- padding: {
- top: -20,
- right: 0,
- left: -4,
- bottom: -4
- },
- strokeDashArray: 4,
- },
- xaxis: {
- labels: {
- padding: 0,
- },
- tooltip: {
- enabled: false
- },
- axisBorder: {
- show: false,
- },
- categories: ['2013', '2014', '2015', '2016', '2017', '2018'],
- },
- yaxis: {
- labels: {
- padding: 4
- },
- },
- colors: [tabler.getColor("green"), tabler.getColor("pink"), tabler.getColor("green"), tabler.getColor("primary")],
- legend: {
- show: false,
- },
- })).render();
- });
- // @formatter:on
- </script>
- </body>
- </html>
|