Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { LitElement, html, css } from "lit-element/lit-element.js";
import { SimpleColors } from "@lrnwebcomponents/simple-colors/lib/simple-colors-polymer.js";
import { ChartistRender } from "@lrnwebcomponents/chartist-render/chartist-render.js";
import "@polymer/iron-ajax/iron-ajax.js";
/**
* `lrndesign-chart-behaviors`
* a line chart
*
* @customElement
* @demo demo/index.html
* @demo demo/pie.html pie charts
* @demo demo/bar.html bar charts
* @demo demo/line.html line charts
*
*/
class LrndesignChartBehaviors extends LitElement(SimpleColors) {
static get styles() {
return [
super.styles,
css`
:host {
display: block;
}
:host {
--chartist-pie-label-color: var(
--simple-colors-default-theme-grey-12
);
--chartist-color-1: var(--simple-colors-default-theme-red-4);
--chartist-color-2: var(--simple-colors-default-theme-blue-4);
--chartist-color-3: var(--simple-colors-default-theme-yellow-4);
--chartist-color-4: var(--simple-colors-default-theme-purple-4);
--chartist-color-5: var(--simple-colors-default-theme-green-4);