UNPKG
@getdistillery/chart.js
Version:
latest (4.5.1)
4.5.1
4.5.0
4.4.7
Simple HTML5 charts using the canvas element.
www.chartjs.org
chartjs/Chart.js
@getdistillery/chart.js
/
dist
/
scales
/
scale.linear.d.ts
11 lines
(10 loc)
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
default
class
LinearScale
extends
LinearScaleBase
{
static
id
:
string
;
/** *
@type
{
any
} */
static
defaults
:
any
;
getPixelForValue
(
value
:
any
):
number
;
getValueForPixel
(
pixel
:
any
):
number
; }
import
LinearScaleBase
from
"./scale.linearbase.js"
;