plotly.js
Version:
The open source javascript graphing library that powers plotly
120 lines (114 loc) • 3.53 kB
JavaScript
var fontAttrs = require('../../plots/font_attributes');
var axisAttrs = require('./axis_attributes');
var colorAttrs = require('../../components/color/attributes');
var carpetFont = fontAttrs({
editType: 'calc',
description: 'The default font used for axis & tick labels on this carpet'
});
var zorder = require('../scatter/attributes').zorder;
// TODO: inherit from global font
carpetFont.family.dflt = '"Open Sans", verdana, arial, sans-serif';
carpetFont.size.dflt = 12;
carpetFont.color.dflt = colorAttrs.defaultLine;
module.exports = {
carpet: {
valType: 'string',
editType: 'calc',
description: [
'An identifier for this carpet, so that `scattercarpet` and',
'`contourcarpet` traces can specify a carpet plot on which',
'they lie'
].join(' ')
},
x: {
valType: 'data_array',
editType: 'calc+clearAxisTypes',
description: [
'A two dimensional array of x coordinates at each carpet point.',
'If omitted, the plot is a cheater plot and the xaxis is hidden',
'by default.'
].join(' ')
},
y: {
valType: 'data_array',
editType: 'calc+clearAxisTypes',
description: 'A two dimensional array of y coordinates at each carpet point.'
},
a: {
valType: 'data_array',
editType: 'calc',
description: [
'An array containing values of the first parameter value'
].join(' ')
},
a0: {
valType: 'number',
dflt: 0,
editType: 'calc',
description: [
'Alternate to `a`.',
'Builds a linear space of a coordinates.',
'Use with `da`',
'where `a0` is the starting coordinate and `da` the step.'
].join(' ')
},
da: {
valType: 'number',
dflt: 1,
editType: 'calc',
description: [
'Sets the a coordinate step.',
'See `a0` for more info.'
].join(' ')
},
b: {
valType: 'data_array',
editType: 'calc',
description: 'A two dimensional array of y coordinates at each carpet point.'
},
b0: {
valType: 'number',
dflt: 0,
editType: 'calc',
description: [
'Alternate to `b`.',
'Builds a linear space of a coordinates.',
'Use with `db`',
'where `b0` is the starting coordinate and `db` the step.'
].join(' ')
},
db: {
valType: 'number',
dflt: 1,
editType: 'calc',
description: [
'Sets the b coordinate step.',
'See `b0` for more info.'
].join(' ')
},
cheaterslope: {
valType: 'number',
dflt: 1,
editType: 'calc',
description: [
'The shift applied to each successive row of data in creating a cheater plot.',
'Only used if `x` is been omitted.'
].join(' ')
},
aaxis: axisAttrs,
baxis: axisAttrs,
font: carpetFont,
color: {
valType: 'color',
dflt: colorAttrs.defaultLine,
editType: 'plot',
description: [
'Sets default for all colors associated with this axis',
'all at once: line, font, tick, and grid colors.',
'Grid color is lightened by blending this with the plot background',
'Individual pieces can override this.'
].join(' ')
},
zorder: zorder
};
;