Bar graph added.

This commit is contained in:
prabhatdev
2020-07-28 00:48:25 +05:30
parent d0a6e2667d
commit 194b41124d
3468 changed files with 640611 additions and 169 deletions

109
node_modules/vega-functions/index.js generated vendored Normal file
View File

@@ -0,0 +1,109 @@
export {
data,
indata,
setdata
} from './src/functions/data';
export {
default as encode
} from './src/functions/encode';
export {
format,
utcFormat,
timeFormat,
utcParse,
timeParse,
monthFormat,
monthAbbrevFormat,
dayFormat,
dayAbbrevFormat
} from './src/functions/format';
export {
geoArea,
geoBounds,
geoCentroid
} from './src/functions/geo';
export {
default as inScope
} from './src/functions/inscope';
export {
warn,
info,
debug
} from './src/functions/log';
export {
luminance,
contrast
} from './src/functions/luminance';
export {
default as merge
} from './src/functions/merge';
export {
default as modify
} from './src/functions/modify';
export {
pinchDistance,
pinchAngle
} from './src/functions/pinch';
export {
range,
domain,
bandwidth,
bandspace,
copy,
scale,
invert
} from './src/functions/scale';
export {
default as scaleGradient
} from './src/functions/scale-gradient';
export {
geoShape,
pathShape
} from './src/functions/shape';
export {
treePath,
treeAncestors
} from './src/functions/tree';
export {
containerSize,
screen,
windowSize
} from './src/functions/window';
export {
codegenParams,
codeGenerator,
expressionFunction,
functionContext
} from './src/codegen';
export {
DataPrefix,
IndexPrefix,
ScalePrefix,
SignalPrefix
} from './src/constants.js';
export {
default as parseExpression
} from './src/parser';
export {
dataVisitor,
indataVisitor,
scaleVisitor
} from './src/visitors';