Skip to content

Commit

Permalink
removed histogram model file and added to histogram element. #224
Browse files Browse the repository at this point in the history
  • Loading branch information
ctcncgr committed Jun 24, 2024
1 parent ba302ad commit ba79663
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
7 changes: 0 additions & 7 deletions src/models/lis-histogram-data-model.ts

This file was deleted.

7 changes: 6 additions & 1 deletion src/vis/lis-histogram-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ import {LitElement, html} from 'lit';
import {customElement, property, state} from 'lit/decorators.js';
import {Ref, createRef, ref} from 'lit/directives/ref.js';
import {globalSubstitution} from '../utils/decorators';
import {HistogramDataModel} from '../models';
//import {HistogramDataModel} from '../models';

declare const d3: any;

export type HistogramDataModel = {
name: string;
count: number;
};
//import * as d3 from 'd3';

/**
Expand Down

0 comments on commit ba79663

Please sign in to comment.