playbook_ui_docs 14.21.2.pre.alpha.PLAY2233removetreemapchart8408 → 14.21.2.pre.alpha.PLAY2256stickydataidreact8446
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.jsx +8 -8
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_react.md +1 -1
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.jsx +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_react.md +3 -3
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.jsx +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_react.md +3 -3
- data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open.jsx +25 -0
- data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open.md +1 -0
- data/app/pb_kits/playbook/pb_tooltip/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_tooltip/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_description.md +5 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.html.erb +37 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.jsx +48 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.md +2 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.html.erb +37 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.jsx +47 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.md +3 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.html.erb +79 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.jsx +90 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.md +1 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.html.erb +54 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.jsx +65 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.md +3 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.html.erb +37 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.jsx +48 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.md +3 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/example.yml +15 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/index.js +5 -0
- data/dist/playbook-doc.js +2 -2
- metadata +22 -2
@@ -0,0 +1,65 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import TreemapChart from '../_treemap_chart'
|
4
|
+
|
5
|
+
const chartData = [
|
6
|
+
{
|
7
|
+
name: 'Meat',
|
8
|
+
id: 'Meat',
|
9
|
+
color: "#0056CF",
|
10
|
+
}, {
|
11
|
+
name: 'Pepperoni',
|
12
|
+
parent: 'Meat',
|
13
|
+
value: 250,
|
14
|
+
}, {
|
15
|
+
name: 'Meatball',
|
16
|
+
parent: 'Meat',
|
17
|
+
value: 400,
|
18
|
+
}, {
|
19
|
+
name: "Anchovy",
|
20
|
+
parent: 'Meat',
|
21
|
+
value: 40,
|
22
|
+
}, {
|
23
|
+
name: 'Vegetarian',
|
24
|
+
id: 'Vegetarian',
|
25
|
+
color: "#F9BB00",
|
26
|
+
}, {
|
27
|
+
name: 'Onions',
|
28
|
+
parent: 'Vegetarian',
|
29
|
+
value: 300,
|
30
|
+
}, {
|
31
|
+
name: 'Pineapple',
|
32
|
+
parent: 'Vegetarian',
|
33
|
+
value: 90,
|
34
|
+
}, {
|
35
|
+
name: "Peppers",
|
36
|
+
parent: 'Vegetarian',
|
37
|
+
value: 80,
|
38
|
+
}, {
|
39
|
+
name: "Specialty",
|
40
|
+
id: "Specialty",
|
41
|
+
color: "#9E64E9",
|
42
|
+
},{
|
43
|
+
name: "Buffalo Chicken",
|
44
|
+
parent: "Specialty",
|
45
|
+
value: 400,
|
46
|
+
}, {
|
47
|
+
name: "Supreme",
|
48
|
+
parent: "Specialty",
|
49
|
+
value: 150,
|
50
|
+
}
|
51
|
+
]
|
52
|
+
|
53
|
+
const TreemapChartGroupedData = (props) => (
|
54
|
+
<div>
|
55
|
+
<TreemapChart
|
56
|
+
chartData={chartData}
|
57
|
+
grouped
|
58
|
+
id="treemap-grouped-data"
|
59
|
+
title="Grouped Toppings"
|
60
|
+
{...props}
|
61
|
+
/>
|
62
|
+
</div>
|
63
|
+
)
|
64
|
+
|
65
|
+
export default TreemapChartGroupedData
|
@@ -0,0 +1,3 @@
|
|
1
|
+
Data can be grouped into distinct segments by specifying the relationship in the `chartData`. For a point to be a parent, it needs an `id` of type `string` included in its object. Any other data points may then reference that `id` as their `parent` value to establish the tree structure.
|
2
|
+
|
3
|
+
Parents can also be passed a custom color to be applied to all of its child points.
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<% data = [
|
2
|
+
{
|
3
|
+
name: "Pepperoni",
|
4
|
+
parent: "Toppings",
|
5
|
+
value: 600,
|
6
|
+
}, {
|
7
|
+
name: "Cheese",
|
8
|
+
parent: "Toppings",
|
9
|
+
value: 510,
|
10
|
+
}, {
|
11
|
+
name: "Mushroom",
|
12
|
+
parent: "Toppings",
|
13
|
+
value: 330,
|
14
|
+
},{
|
15
|
+
name: "Onions",
|
16
|
+
parent: "Toppings",
|
17
|
+
value: 250,
|
18
|
+
}, {
|
19
|
+
name: "Olives",
|
20
|
+
parent: "Toppings",
|
21
|
+
value: 204,
|
22
|
+
}, {
|
23
|
+
name: "Pineapple",
|
24
|
+
parent: "Toppings",
|
25
|
+
value: 90,
|
26
|
+
}, {
|
27
|
+
name: "Pizza Toppings",
|
28
|
+
id: "Toppings",
|
29
|
+
},
|
30
|
+
] %>
|
31
|
+
|
32
|
+
<%= pb_rails("treemap_chart", props: {
|
33
|
+
chart_data: data,
|
34
|
+
id: "treemap-tooltip",
|
35
|
+
title: "Favored Pizza Toppings",
|
36
|
+
tooltip_html: "<p>Custom tooltip for {point.name} <br/>with value: {point.value}</p>",
|
37
|
+
}) %>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import TreemapChart from '../_treemap_chart'
|
4
|
+
|
5
|
+
const chartData = [
|
6
|
+
{
|
7
|
+
name: "Pepperoni",
|
8
|
+
parent: "Toppings",
|
9
|
+
value: 600,
|
10
|
+
}, {
|
11
|
+
name: "Cheese",
|
12
|
+
parent: "Toppings",
|
13
|
+
value: 510,
|
14
|
+
}, {
|
15
|
+
name: "Mushroom",
|
16
|
+
parent: "Toppings",
|
17
|
+
value: 330,
|
18
|
+
},{
|
19
|
+
name: "Onions",
|
20
|
+
parent: "Toppings",
|
21
|
+
value: 250,
|
22
|
+
}, {
|
23
|
+
name: "Olives",
|
24
|
+
parent: "Toppings",
|
25
|
+
value: 204,
|
26
|
+
}, {
|
27
|
+
name: "Pineapple",
|
28
|
+
parent: "Toppings",
|
29
|
+
value: 90,
|
30
|
+
}, {
|
31
|
+
name: "Pizza Toppings",
|
32
|
+
id: "Toppings",
|
33
|
+
},
|
34
|
+
]
|
35
|
+
|
36
|
+
const TreemapChartTooltip = (props) => (
|
37
|
+
<div>
|
38
|
+
<TreemapChart
|
39
|
+
chartData={chartData}
|
40
|
+
id="treemap-tooltip"
|
41
|
+
title="Favored Pizza Toppings"
|
42
|
+
tooltipHtml= '<p>Custom tooltip for {point.name} <br/>with value: {point.value}</p>'
|
43
|
+
{...props}
|
44
|
+
/>
|
45
|
+
</div>
|
46
|
+
)
|
47
|
+
|
48
|
+
export default TreemapChartTooltip
|
@@ -0,0 +1,15 @@
|
|
1
|
+
examples:
|
2
|
+
|
3
|
+
rails:
|
4
|
+
- treemap_chart_default: Default
|
5
|
+
- treemap_chart_grouped_data: Grouped Data
|
6
|
+
- treemap_chart_drillable: Drillable
|
7
|
+
- treemap_chart_colors: Color Overrides
|
8
|
+
- treemap_chart_tooltip: Tooltip Customization
|
9
|
+
|
10
|
+
react:
|
11
|
+
- treemap_chart_default: Default
|
12
|
+
- treemap_chart_grouped_data: Grouped Data
|
13
|
+
- treemap_chart_drillable: Drillable
|
14
|
+
- treemap_chart_colors: Color Overrides
|
15
|
+
- treemap_chart_tooltip: Tooltip Customization
|
@@ -0,0 +1,5 @@
|
|
1
|
+
export { default as TreemapChartDefault } from './_treemap_chart_default.jsx'
|
2
|
+
export { default as TreemapChartGroupedData } from './_treemap_chart_grouped_data.jsx'
|
3
|
+
export { default as TreemapChartDrillable } from './_treemap_chart_drillable.jsx'
|
4
|
+
export { default as TreemapChartColors } from './_treemap_chart_colors.jsx'
|
5
|
+
export { default as TreemapChartTooltip } from './_treemap_chart_tooltip.jsx'
|