source: node_modules/recharts/es6/util/Constants.js@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 906 bytes
Line 
1export var COLOR_PANEL = ['#1890FF', '#66B5FF', '#41D9C7', '#2FC25B', '#6EDB8F', '#9AE65C', '#FACC14', '#E6965C', '#57AD71', '#223273', '#738AE6', '#7564CC', '#8543E0', '#A877ED', '#5C8EE6', '#13C2C2', '#70E0E0', '#5CA3E6', '#3436C7', '#8082FF', '#DD81E6', '#F04864', '#FA7D92', '#D598D9'];
2
3/**
4 * We use this attribute to identify which element is the one that the user is touching.
5 * The index is the position of the element in the data array.
6 * This can be either a number (for array-based charts) or a string (for the charts that have a matrix-shaped data).
7 */
8export var DATA_ITEM_INDEX_ATTRIBUTE_NAME = 'data-recharts-item-index';
9
10/**
11 * We use this attribute to identify which element is the one that the user is touching.
12 * Unlike dataKey, or name, it is always unique.
13 */
14export var DATA_ITEM_GRAPHICAL_ITEM_ID_ATTRIBUTE_NAME = 'data-recharts-item-id';
15export var DEFAULT_Y_AXIS_WIDTH = 60;
Note: See TracBrowser for help on using the repository browser.