Sha256: d53275d56a282b8373e157030c73cda01238fa0f4d4ac192255096f6ffc9cfe3
Contents?: true
Size: 942 Bytes
Versions: 9
Compression:
Stored size: 942 Bytes
Contents
/*global define*/ define(['Core/Enumeration'], function(Enumeration) { "use strict"; /** * An enumeration describing how to draw a label. * * @exports LabelStyle * * @see Label#setStyle */ var LabelStyle = { /** * Fill the text of the label, but do not outline. * * @type {Enumeration} * @constant * @default 0 */ FILL : new Enumeration(0, 'FILL'), /** * Outline the text of the label, but do not fill. * * @type {Enumeration} * @constant * @default 1 */ OUTLINE : new Enumeration(1, 'OUTLINE'), /** * Fill and outline the text of the label. * * @type {Enumeration} * @constant * @default 2 */ FILL_AND_OUTLINE : new Enumeration(2, 'FILL_AND_OUTLINE') }; return LabelStyle; });
Version data entries
9 entries across 9 versions & 1 rubygems