UNPKG

plotly.js

Version:

The open source javascript graphing library that powers plotly

29 lines (22 loc) 698 B
/** * Copyright 2012-2020, Plotly, Inc. * All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; var Lib = require('../../lib'); /* * opts: object of flags to control features not all text users support * noSelect: caller does not support selected/unselected attribute containers */ module.exports = function(traceIn, traceOut, layout, coerce, opts) { opts = opts || {}; coerce('textposition'); Lib.coerceFont(coerce, 'textfont', layout.font); if(!opts.noSelect) { coerce('selected.textfont.color'); coerce('unselected.textfont.color'); } };