playbook_ui 15.1.0.pre.rc.0 → 15.1.0.pre.rc.2
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/_playbook.scss +1 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_circle_icon_button/_circle_icon_button.tsx +2 -0
- data/app/pb_kits/playbook/pb_circle_icon_button/circle_icon_button.html.erb +1 -0
- data/app/pb_kits/playbook/pb_date_picker/date_picker_helper.ts +48 -4
- data/app/pb_kits/playbook/pb_dialog/_dialog.tsx +5 -7
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/_fixed_confirmation_toast.tsx +9 -0
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.html.erb +3 -3
- data/app/pb_kits/playbook/pb_form/docs/_form_form_with.html.erb +1 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/_pb_bar_graph.scss +0 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/_pb_bar_graph.tsx +62 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_colors.html.erb +35 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_colors.jsx +49 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_colors_rails.md +1 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_colors_react.md +2 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_default.html.erb +38 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_default.jsx +51 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_height.html.erb +46 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_height.jsx +62 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_height.md +3 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_horizontal.html.erb +47 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_horizontal.jsx +60 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_legend.html.erb +25 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_legend.jsx +36 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_legend_non_clickable.jsx +44 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_legend_position.html.erb +100 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_legend_position.jsx +126 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_negative_numbers.html.erb +32 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_negative_numbers.jsx +48 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_secondary_y_axis.html.erb +68 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_secondary_y_axis.jsx +81 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_spline.html.erb +31 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_spline.jsx +42 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_spline.md +2 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_stacked.html.erb +35 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/_pb_bar_graph_stacked.jsx +51 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/example.yml +27 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/docs/index.js +11 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/pbBarGraphTheme.ts +106 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/pb_bar_graph.html.erb +1 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/pb_bar_graph.rb +28 -0
- data/app/pb_kits/playbook/pb_pb_bar_graph/pbbargraph.test.jsx +31 -0
- data/dist/chunks/{_line_graph-CnQWoGfx.js → _line_graph-BBny-YYZ.js} +1 -1
- data/dist/chunks/{_typeahead-_Pft9jZd.js → _typeahead-CeyJ6-GF.js} +2 -2
- data/dist/chunks/{_weekday_stacked-D_gm5opl.js → _weekday_stacked-DcnWCSoA.js} +2 -2
- data/dist/chunks/{lib-CY5ZPzic.js → lib-BTs5acfO.js} +1 -1
- data/dist/chunks/{pb_form_validation-D3b0JKHH.js → pb_form_validation-CKkaQFX3.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/menu.yml +9 -1
- data/dist/playbook-doc.js +2 -2
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/lib/playbook/forms/builder/form_field_builder.rb +9 -1
- data/lib/playbook/version.rb +1 -1
- metadata +40 -8
- data/app/pb_kits/playbook/pb_dialog/dialogHelper.js +0 -65
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ad282715acb792904cbf9056d98217c177a451ecdc579b9babfac045dfcec7b
|
4
|
+
data.tar.gz: 19ed8e90c4644d5af9bc0d2322232b76ab115ae22f6c6be5a3a649cf6270ebfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25360a6f24fd61afce24e22efee0f9e1b42cecf83498382c407a96bce412acbb91311449015c6850eb2dba194fa8b74158eeeb6af04c0a4d10d429d937eb7882
|
7
|
+
data.tar.gz: a1398461c34b4cf035e8323f6c113774d1521331add861347044a0efaec25c71aa404f3adf3b5b1e2fdbc22d7c9d3a848a9f9a753e15b50e1982c07d6afab0c6
|
@@ -108,6 +108,7 @@
|
|
108
108
|
@import 'pb_user_badge/user_badge';
|
109
109
|
@import 'pb_weekday_stacked/weekday_stacked';
|
110
110
|
@import 'pb_empty_state/empty_state';
|
111
|
+
@import 'pb_pb_bar_graph/pb_bar_graph';
|
111
112
|
@import 'utilities/mixins';
|
112
113
|
@import 'utilities/spacing';
|
113
114
|
@import 'utilities/cursor';
|
@@ -4,7 +4,6 @@ examples:
|
|
4
4
|
- bar_graph_default: Default
|
5
5
|
- bar_graph_legend: Legend
|
6
6
|
- bar_graph_legend_position: Legend Position
|
7
|
-
- bar_graph_legend_non_clickable: Legend Non Clickable
|
8
7
|
- bar_graph_height: Height
|
9
8
|
- bar_graph_spline: Spline
|
10
9
|
- bar_graph_colors: Color Overrides
|
@@ -65,6 +65,7 @@ const CircleIconButton = (props: CircleIconButtonProps): React.ReactElement => {
|
|
65
65
|
id={id}
|
66
66
|
>
|
67
67
|
<Button
|
68
|
+
aria={aria}
|
68
69
|
dark={dark}
|
69
70
|
disabled={disabled}
|
70
71
|
htmlType={type}
|
@@ -78,6 +79,7 @@ const CircleIconButton = (props: CircleIconButtonProps): React.ReactElement => {
|
|
78
79
|
>
|
79
80
|
<Icon
|
80
81
|
fixedWidth
|
82
|
+
htmlOptions={{'aria-hidden': true}}
|
81
83
|
icon={icon}
|
82
84
|
/>
|
83
85
|
</Button>
|
@@ -89,6 +89,48 @@ const datePickerHelper = (config: DatePickerConfig, scrollContainer: string | HT
|
|
89
89
|
}
|
90
90
|
}
|
91
91
|
|
92
|
+
// Helper function to get min/max years based on yearRange. If minDate/maxDate provided, grab year from those values
|
93
|
+
const getMinMaxYears = () => {
|
94
|
+
const [minYear, maxYear] = yearRange;
|
95
|
+
|
96
|
+
const extractYear = (dateOption: typeof minDate | typeof maxDate): number | null => {
|
97
|
+
if (!dateOption) return null;
|
98
|
+
|
99
|
+
// If it's already a number, assume it's a year
|
100
|
+
if (typeof dateOption === 'number') {
|
101
|
+
return dateOption;
|
102
|
+
}
|
103
|
+
|
104
|
+
// If it's a string, extract year with regex
|
105
|
+
if (typeof dateOption === 'string') {
|
106
|
+
const match = dateOption.match(/\b(19|20)\d{2}\b/);
|
107
|
+
return match ? parseInt(match[0], 10) : null;
|
108
|
+
}
|
109
|
+
|
110
|
+
// If it's a Date object, get the year directly
|
111
|
+
if (dateOption instanceof Date) {
|
112
|
+
return dateOption.getFullYear();
|
113
|
+
}
|
114
|
+
|
115
|
+
return null;
|
116
|
+
};
|
117
|
+
|
118
|
+
const setMinYear = minDate ? (extractYear(minDate) ?? minYear) : minYear;
|
119
|
+
const setMaxYear = maxDate ? (extractYear(maxDate) ?? maxYear) : maxYear;
|
120
|
+
|
121
|
+
return { setMinYear, setMaxYear };
|
122
|
+
};
|
123
|
+
|
124
|
+
const { setMinYear, setMaxYear } = getMinMaxYears()
|
125
|
+
|
126
|
+
// Helper function to get min/max dates based on yearRange
|
127
|
+
const getMinMaxDates = () => {
|
128
|
+
const setMinDate = minDate || `01/01/${setMinYear}`
|
129
|
+
const setMaxDate = maxDate || `12/31/${setMaxYear}`
|
130
|
+
|
131
|
+
return { setMinDate, setMaxDate }
|
132
|
+
}
|
133
|
+
|
92
134
|
const disabledWeekDays = () => {
|
93
135
|
return (
|
94
136
|
[
|
@@ -201,6 +243,8 @@ const datePickerHelper = (config: DatePickerConfig, scrollContainer: string | HT
|
|
201
243
|
// | Flatpickr initializer w/ config |
|
202
244
|
// ===========================================================
|
203
245
|
|
246
|
+
const { setMinDate, setMaxDate } = getMinMaxDates()
|
247
|
+
|
204
248
|
flatpickr(`#${pickerId}`, {
|
205
249
|
allowInput,
|
206
250
|
closeOnSelect,
|
@@ -212,8 +256,8 @@ const datePickerHelper = (config: DatePickerConfig, scrollContainer: string | HT
|
|
212
256
|
locale: {
|
213
257
|
rangeSeparator: ' to '
|
214
258
|
},
|
215
|
-
maxDate,
|
216
|
-
minDate,
|
259
|
+
maxDate: setMaxDate,
|
260
|
+
minDate: setMinDate,
|
217
261
|
mode,
|
218
262
|
nextArrow: '<i class="far fa-angle-right"></i>',
|
219
263
|
onOpen: [() => {
|
@@ -250,7 +294,7 @@ const datePickerHelper = (config: DatePickerConfig, scrollContainer: string | HT
|
|
250
294
|
|
251
295
|
// create html option tags for desired years
|
252
296
|
let years = ''
|
253
|
-
for (let year =
|
297
|
+
for (let year = setMaxYear; year >= setMinYear; year--) {
|
254
298
|
years += `<option value="${year}">${year}</option>`
|
255
299
|
}
|
256
300
|
|
@@ -323,7 +367,7 @@ const datePickerHelper = (config: DatePickerConfig, scrollContainer: string | HT
|
|
323
367
|
}
|
324
368
|
// === End of Automatic Sync Logic ===
|
325
369
|
|
326
|
-
|
370
|
+
|
327
371
|
// Adding dropdown icons to year and month select
|
328
372
|
dropdown.insertAdjacentHTML('afterend', `<i class="year-dropdown-icon">${angleDown}</i>`)
|
329
373
|
if (picker.monthElements[0].parentElement) {
|
@@ -73,8 +73,8 @@ const Dialog = (props: DialogProps): React.ReactElement => {
|
|
73
73
|
const ariaProps = buildAriaProps(aria);
|
74
74
|
const dataProps = buildDataProps(data)
|
75
75
|
const htmlProps = buildHtmlProps(htmlOptions);
|
76
|
-
const
|
77
|
-
base: classnames("pb_dialog", buildCss("pb_dialog", size, placement)),
|
76
|
+
const classes = {
|
77
|
+
base: classnames("pb_dialog", buildCss("pb_dialog", size, placement), globalProps(props), className),
|
78
78
|
afterOpen: "pb_dialog_after_open",
|
79
79
|
beforeClose: "pb_dialog_before_close",
|
80
80
|
};
|
@@ -93,10 +93,8 @@ const Dialog = (props: DialogProps): React.ReactElement => {
|
|
93
93
|
|
94
94
|
const dynamicInlineProps = globalInlineProps(props);
|
95
95
|
|
96
|
-
const
|
96
|
+
const wrapperClasses = classnames(
|
97
97
|
buildCss("pb_dialog_wrapper"),
|
98
|
-
globalProps(props),
|
99
|
-
className
|
100
98
|
);
|
101
99
|
|
102
100
|
const [triggerOpened, setTriggerOpened] = useState(false),
|
@@ -173,11 +171,11 @@ const Dialog = (props: DialogProps): React.ReactElement => {
|
|
173
171
|
{...ariaProps}
|
174
172
|
{...dataProps}
|
175
173
|
{...htmlProps}
|
176
|
-
className={
|
174
|
+
className={wrapperClasses}
|
177
175
|
>
|
178
176
|
<Modal
|
179
177
|
ariaHideApp={false}
|
180
|
-
className={
|
178
|
+
className={classes}
|
181
179
|
closeTimeoutMS={200}
|
182
180
|
contentLabel="Dialog"
|
183
181
|
id={id}
|
@@ -35,6 +35,7 @@ type FixedConfirmationToastProps = {
|
|
35
35
|
|
36
36
|
const FixedConfirmationToast = (props: FixedConfirmationToastProps): React.ReactElement => {
|
37
37
|
const [showToast, toggleToast] = useState(true);
|
38
|
+
|
38
39
|
const {
|
39
40
|
autoClose = 0,
|
40
41
|
children,
|
@@ -87,8 +88,15 @@ const FixedConfirmationToast = (props: FixedConfirmationToastProps): React.React
|
|
87
88
|
<>
|
88
89
|
{showToast && (
|
89
90
|
<div
|
91
|
+
aria-atomic="true"
|
92
|
+
aria-live="polite"
|
90
93
|
className={css}
|
91
94
|
onClick={handleClick}
|
95
|
+
onKeyDown={(e) => {
|
96
|
+
if (e.key === "Enter" || e.key === " ") handleClick();
|
97
|
+
}}
|
98
|
+
role="status"
|
99
|
+
tabIndex={0}
|
92
100
|
{...htmlProps}
|
93
101
|
>
|
94
102
|
{returnedIcon && icon !== "none" && (
|
@@ -111,6 +119,7 @@ const FixedConfirmationToast = (props: FixedConfirmationToastProps): React.React
|
|
111
119
|
|
112
120
|
{closeable && (
|
113
121
|
<Icon
|
122
|
+
aria={{ "label": "Close Toast" }}
|
114
123
|
className="pb_icon"
|
115
124
|
cursor="pointer"
|
116
125
|
fixedWidth={false}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
<%= pb_content_tag do %>
|
1
|
+
<%= pb_content_tag(:div, "aria-atomic": "true", "aria-live": "polite", role: "status", tabindex: 0, onkeydown: "if(event.key==='Enter'||event.key===' '){ this.remove(); }" ) do %>
|
2
2
|
<% if object.icon_value && object.icon_value != "none" %>
|
3
|
-
<%= pb_rails("icon", props: { icon: object.icon_value, classname: "pb_icon", fixed_width: true }) %>
|
3
|
+
<%= pb_rails("icon", props: { icon: object.icon_value, classname: "pb_icon", fixed_width: true, aria: { "aria-label": "#{object.icon_value} icon" } }) %>
|
4
4
|
<% end %>
|
5
5
|
<% if content %>
|
6
6
|
<%= content %>
|
@@ -8,5 +8,5 @@
|
|
8
8
|
<%= pb_rails("title", props: { text: object.text, size: 4, flex: "1", classname: "pb_fixed_confirmation_toast_text" }) %>
|
9
9
|
<% end %>
|
10
10
|
|
11
|
-
<%= pb_rails("icon", props: { icon: "times", classname: "pb_icon", cursor: "pointer", fixed_width: true }) if object.closeable %>
|
11
|
+
<%= pb_rails("icon", props: { icon: "times", classname: "pb_icon", cursor: "pointer", fixed_width: true, aria: { "aria-label": "Close Toast" } }) if object.closeable %>
|
12
12
|
<% end %>
|
@@ -91,6 +91,7 @@
|
|
91
91
|
<%= pb_form_with(scope: :example, url: "", method: :get) do |form| %>
|
92
92
|
<%= form.typeahead :example_typeahead, props: { data: { typeahead_example1: true, user: {} }, label: true, placeholder: "Search for a user" } %>
|
93
93
|
<%= form.text_field :example_text_field, props: { label: true } %>
|
94
|
+
<%= form.text_field :example_text_field_2, props: { label: "Text Field Custom Label" } %>
|
94
95
|
<%= form.phone_number_field :example_phone_number_field, props: { label: "Example phone field", hidden_inputs: true } %>
|
95
96
|
<%= form.email_field :example_email_field, props: { label: true } %>
|
96
97
|
<%= form.number_field :example_number_field, props: { label: true } %>
|
File without changes
|
@@ -0,0 +1,62 @@
|
|
1
|
+
import React, { useMemo } from "react"
|
2
|
+
import { globalProps } from "../utilities/globalProps";
|
3
|
+
import { buildAriaProps, buildDataProps, buildHtmlProps } from "../utilities/props";
|
4
|
+
import Highcharts from "highcharts"
|
5
|
+
import HighchartsReact from "highcharts-react-official"
|
6
|
+
|
7
|
+
import pbBarGraphTheme from "./pbBarGraphTheme"
|
8
|
+
|
9
|
+
import classnames from "classnames";
|
10
|
+
|
11
|
+
type PbBarGraphProps = {
|
12
|
+
|
13
|
+
options: Record<string, unknown>
|
14
|
+
className?: string
|
15
|
+
aria?: { [key: string]: string };
|
16
|
+
data?: { [key: string]: string };
|
17
|
+
id: string;
|
18
|
+
htmlOptions?: {[key: string]: string | number | boolean | (() => void)};
|
19
|
+
}
|
20
|
+
|
21
|
+
const PbBarGraph = ({
|
22
|
+
aria = {},
|
23
|
+
data = {},
|
24
|
+
id,
|
25
|
+
htmlOptions = {},
|
26
|
+
options,
|
27
|
+
className = "pb_pb_bar_graph",
|
28
|
+
}: PbBarGraphProps): React.ReactElement => {
|
29
|
+
|
30
|
+
const ariaProps = buildAriaProps(aria);
|
31
|
+
const dataProps = buildDataProps(data)
|
32
|
+
const htmlProps = buildHtmlProps(htmlOptions);
|
33
|
+
|
34
|
+
const mergedOptions = useMemo(() => {
|
35
|
+
if (!options || typeof options !== "object") {
|
36
|
+
// eslint-disable-next-line no-console
|
37
|
+
console.error("❌ Invalid options passed to <BarGraph />", options)
|
38
|
+
return {}
|
39
|
+
}
|
40
|
+
|
41
|
+
return Highcharts.merge({}, pbBarGraphTheme, options)
|
42
|
+
}, [options])
|
43
|
+
|
44
|
+
return (
|
45
|
+
|
46
|
+
<div>
|
47
|
+
<HighchartsReact
|
48
|
+
containerProps={{
|
49
|
+
className: classnames(globalProps, className),
|
50
|
+
id: id,
|
51
|
+
...ariaProps,
|
52
|
+
...dataProps,
|
53
|
+
...htmlProps
|
54
|
+
}}
|
55
|
+
highcharts={Highcharts}
|
56
|
+
options={mergedOptions}
|
57
|
+
/>
|
58
|
+
</div>
|
59
|
+
)
|
60
|
+
}
|
61
|
+
|
62
|
+
export default PbBarGraph
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<% chart_data = [{
|
2
|
+
name: 'Installation',
|
3
|
+
data: [1475,200,3000,654,656]
|
4
|
+
}, {
|
5
|
+
name: 'Manufacturing',
|
6
|
+
data: [4434,524,2320,440,500]
|
7
|
+
}, {
|
8
|
+
name: 'Sales & Distribution',
|
9
|
+
data: [3387,743,1344,434,440,]
|
10
|
+
}, {
|
11
|
+
name: 'Project Development',
|
12
|
+
data: [3227,878,999,780,1000]
|
13
|
+
}, {
|
14
|
+
name: 'Other',
|
15
|
+
data: [1111,677,3245,500,200]
|
16
|
+
}] %>
|
17
|
+
|
18
|
+
<% chart_options = {
|
19
|
+
series: chart_data,
|
20
|
+
title: {
|
21
|
+
text: "Bar Graph with Custom Data Colors",
|
22
|
+
},
|
23
|
+
xAxis: {
|
24
|
+
categories: ["Jan", "Feb", "Mar", "Apr", "May"],
|
25
|
+
},
|
26
|
+
yAxis: {
|
27
|
+
title: {
|
28
|
+
text: "Number of Employees",
|
29
|
+
},
|
30
|
+
},
|
31
|
+
colors: ['#1CA05C', '#FD804C', '#144075', '#00C4D7', '#DA0014'],
|
32
|
+
}
|
33
|
+
%>
|
34
|
+
|
35
|
+
<%= pb_rails("pb_bar_graph", props: {options: chart_options}) %>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import { PbBarGraph } from 'playbook-ui'
|
3
|
+
import colors from '../../tokens/exports/_colors.module.scss'
|
4
|
+
|
5
|
+
const chartData = [{
|
6
|
+
name: 'Installation',
|
7
|
+
data: [1475, 200, 3000, 654, 656],
|
8
|
+
}, {
|
9
|
+
name: 'Manufacturing',
|
10
|
+
data: [4434, 524, 2320, 440, 500],
|
11
|
+
}, {
|
12
|
+
name: 'Sales & Distribution',
|
13
|
+
data: [3387, 743, 1344, 434, 440],
|
14
|
+
}, {
|
15
|
+
name: 'Project Development',
|
16
|
+
data: [3227, 878, 999, 780, 1000],
|
17
|
+
}, {
|
18
|
+
name: 'Other',
|
19
|
+
data: [1111, 677, 3245, 500, 200],
|
20
|
+
}]
|
21
|
+
|
22
|
+
const chartOptions = {
|
23
|
+
series: chartData,
|
24
|
+
title: {
|
25
|
+
text: "Bar Graph with Custom Data Colors",
|
26
|
+
},
|
27
|
+
xAxis: {
|
28
|
+
categories: ["Jan", "Feb", "Mar", "Apr", "May"],
|
29
|
+
},
|
30
|
+
yAxis: {
|
31
|
+
title: {
|
32
|
+
text: "Number of Employees",
|
33
|
+
},
|
34
|
+
},
|
35
|
+
colors: [colors.data_4, colors.data_5, colors.data_6, colors.data_7, colors.data_8],
|
36
|
+
}
|
37
|
+
|
38
|
+
const PbBarGraphColors = () => {
|
39
|
+
|
40
|
+
return (
|
41
|
+
<div>
|
42
|
+
<PbBarGraph
|
43
|
+
options={chartOptions}
|
44
|
+
/>
|
45
|
+
</div>
|
46
|
+
)
|
47
|
+
}
|
48
|
+
|
49
|
+
export default PbBarGraphColors
|
@@ -0,0 +1 @@
|
|
1
|
+
Custom data colors allow for color customization to match the needs of business requirements. To accomplish this, you can use hex values.
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<% chart_data = [{
|
2
|
+
name: 'Installation',
|
3
|
+
data: [1475,200,3000,654,656]
|
4
|
+
}, {
|
5
|
+
name: 'Manufacturing',
|
6
|
+
data: [4434,524,2320,440,500]
|
7
|
+
}, {
|
8
|
+
name: 'Sales & Distribution',
|
9
|
+
data: [3387,743,1344,434,440,]
|
10
|
+
}, {
|
11
|
+
name: 'Project Development',
|
12
|
+
data: [3227,878,999,780,1000]
|
13
|
+
}, {
|
14
|
+
name: 'Other',
|
15
|
+
data: [1111,677,3245,500,200]
|
16
|
+
}] %>
|
17
|
+
|
18
|
+
|
19
|
+
<% chart_options = {
|
20
|
+
series: chart_data,
|
21
|
+
title: {
|
22
|
+
text: 'Solar Employment Growth by Sector, 2010-2016',
|
23
|
+
},
|
24
|
+
subtitle: {
|
25
|
+
text: 'Source: thesolarfoundation.com',
|
26
|
+
},
|
27
|
+
xAxis: {
|
28
|
+
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May'],
|
29
|
+
},
|
30
|
+
yAxis: {
|
31
|
+
title: {
|
32
|
+
text: 'Number of Employees',
|
33
|
+
},
|
34
|
+
},
|
35
|
+
}
|
36
|
+
%>
|
37
|
+
|
38
|
+
<%= pb_rails("pb_bar_graph", props: {options: chart_options}) %>
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import { PbBarGraph } from 'playbook-ui'
|
3
|
+
|
4
|
+
const chartData = [{
|
5
|
+
name: 'Installation',
|
6
|
+
data: [1475, 200, 3000, 654, 656],
|
7
|
+
}, {
|
8
|
+
name: 'Manufacturing',
|
9
|
+
data: [4434, 524, 2320, 440, 500],
|
10
|
+
}, {
|
11
|
+
name: 'Sales & Distribution',
|
12
|
+
data: [3387, 743, 1344, 434, 440],
|
13
|
+
}, {
|
14
|
+
name: 'Project Development',
|
15
|
+
data: [3227, 878, 999, 780, 1000],
|
16
|
+
}, {
|
17
|
+
name: 'Other',
|
18
|
+
data: [1111, 677, 3245, 500, 200],
|
19
|
+
}]
|
20
|
+
|
21
|
+
const chartOptions = {
|
22
|
+
series: chartData,
|
23
|
+
title: {
|
24
|
+
text: 'Solar Employment Growth by Sector, 2010-2016',
|
25
|
+
},
|
26
|
+
subtitle: {
|
27
|
+
text: 'Source: thesolarfoundation.com',
|
28
|
+
},
|
29
|
+
xAxis: {
|
30
|
+
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May'],
|
31
|
+
},
|
32
|
+
yAxis: {
|
33
|
+
title: {
|
34
|
+
text: 'Number of Employees',
|
35
|
+
},
|
36
|
+
},
|
37
|
+
}
|
38
|
+
|
39
|
+
const PbBarGraphDefault = (props) => {
|
40
|
+
|
41
|
+
return (
|
42
|
+
<div>
|
43
|
+
<PbBarGraph
|
44
|
+
{...props}
|
45
|
+
options={chartOptions}
|
46
|
+
/>
|
47
|
+
</div>
|
48
|
+
)
|
49
|
+
}
|
50
|
+
|
51
|
+
export default PbBarGraphDefault
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<% chart_data = [{
|
2
|
+
name: 'Number of Installations',
|
3
|
+
data: [1475,200,3000,654,656]
|
4
|
+
}] %>
|
5
|
+
|
6
|
+
<% chart_options_pixel = {
|
7
|
+
chart: {
|
8
|
+
height: "300"
|
9
|
+
},
|
10
|
+
series: chart_data,
|
11
|
+
title: {
|
12
|
+
text: "Fixed Height (300px)",
|
13
|
+
},
|
14
|
+
xAxis: {
|
15
|
+
categories: ["Jan", "Feb", "Mar", "Apr", "May"],
|
16
|
+
},
|
17
|
+
yAxis: {
|
18
|
+
title: {
|
19
|
+
text: "Number of Employees",
|
20
|
+
},
|
21
|
+
}
|
22
|
+
} %>
|
23
|
+
|
24
|
+
<%= pb_rails("pb_bar_graph", props: {options: chart_options_pixel}) %>
|
25
|
+
|
26
|
+
<br /><br />
|
27
|
+
|
28
|
+
<% chart_options_percentage = {
|
29
|
+
chart: {
|
30
|
+
height: "50%"
|
31
|
+
},
|
32
|
+
series: chart_data,
|
33
|
+
title: {
|
34
|
+
text: "Percentage Height (50%)",
|
35
|
+
},
|
36
|
+
xAxis: {
|
37
|
+
categories: ["Jan", "Feb", "Mar", "Apr", "May"],
|
38
|
+
},
|
39
|
+
yAxis: {
|
40
|
+
title: {
|
41
|
+
text: "Number of Employees",
|
42
|
+
},
|
43
|
+
}
|
44
|
+
} %>
|
45
|
+
|
46
|
+
<%= pb_rails("pb_bar_graph", props: {options: chart_options_percentage}) %>
|
@@ -0,0 +1,62 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import { PbBarGraph } from 'playbook-ui'
|
3
|
+
|
4
|
+
const chartData = [{
|
5
|
+
name: 'Number of Installations',
|
6
|
+
data: [1475, 200, 3000, 654, 656],
|
7
|
+
}]
|
8
|
+
|
9
|
+
const pixelHeightChartOptions = {
|
10
|
+
chart: {
|
11
|
+
height: "300"
|
12
|
+
},
|
13
|
+
series: chartData,
|
14
|
+
title: {
|
15
|
+
text: "Fixed Height (300px)",
|
16
|
+
},
|
17
|
+
xAxis: {
|
18
|
+
categories: ["Jan", "Feb", "Mar", "Apr", "May"],
|
19
|
+
},
|
20
|
+
yAxis: {
|
21
|
+
title: {
|
22
|
+
text: "Number of Employees",
|
23
|
+
},
|
24
|
+
},
|
25
|
+
};
|
26
|
+
|
27
|
+
const percentageHeightChartOptions = {
|
28
|
+
chart: {
|
29
|
+
height: "50%"
|
30
|
+
},
|
31
|
+
series: chartData,
|
32
|
+
title: {
|
33
|
+
text: "Percentage Height (50%)",
|
34
|
+
},
|
35
|
+
xAxis: {
|
36
|
+
categories: ["Jan", "Feb", "Mar", "Apr", "May"],
|
37
|
+
},
|
38
|
+
yAxis: {
|
39
|
+
title: {
|
40
|
+
text: "Number of Employees",
|
41
|
+
},
|
42
|
+
},
|
43
|
+
};
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
const PbBarGraphHeight = () => (
|
48
|
+
<div>
|
49
|
+
<PbBarGraph
|
50
|
+
options={pixelHeightChartOptions}
|
51
|
+
/>
|
52
|
+
|
53
|
+
<br />
|
54
|
+
<br />
|
55
|
+
|
56
|
+
<PbBarGraph
|
57
|
+
options={percentageHeightChartOptions}
|
58
|
+
/>
|
59
|
+
</div>
|
60
|
+
)
|
61
|
+
|
62
|
+
export default PbBarGraphHeight
|
@@ -0,0 +1,3 @@
|
|
1
|
+
By default, Highcharts have a height of 400px, but this can be customized. You can override the default by specifying either a percentage or a fixed pixel value.
|
2
|
+
|
3
|
+
Using a percentage maintains a consistent aspect ratio across different responsive sizes. For example, setting the height to 50% makes the chart’s height half of its width.
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<% chart_options = {
|
2
|
+
chart: {
|
3
|
+
type: 'bar'
|
4
|
+
},
|
5
|
+
title: {
|
6
|
+
text: 'Historic World Population by Region',
|
7
|
+
align: 'left'
|
8
|
+
},
|
9
|
+
subtitle: {
|
10
|
+
text: 'Source: <a ' +
|
11
|
+
'href="https://en.wikipedia.org/wiki/List_of_continents_and_continental_subregions_by_population"' +
|
12
|
+
'target="_blank">Wikipedia.org</a>',
|
13
|
+
align: 'left'
|
14
|
+
},
|
15
|
+
xAxis: {
|
16
|
+
categories: ['Africa', 'America', 'Asia', 'Europe'],
|
17
|
+
lineWidth: 0
|
18
|
+
},
|
19
|
+
yAxis: {
|
20
|
+
title: {
|
21
|
+
text: '',
|
22
|
+
},
|
23
|
+
},
|
24
|
+
tooltip: {
|
25
|
+
valueSuffix: ' millions'
|
26
|
+
},
|
27
|
+
plotOptions: {
|
28
|
+
bar: {
|
29
|
+
dataLabels: {
|
30
|
+
enabled: true
|
31
|
+
},
|
32
|
+
groupPadding: 0.1
|
33
|
+
}
|
34
|
+
},
|
35
|
+
series: [{
|
36
|
+
name: 'Year 1990',
|
37
|
+
data: [631, 727, 3202, 721]
|
38
|
+
}, {
|
39
|
+
name: 'Year 2000',
|
40
|
+
data: [814, 841, 3714, 726]
|
41
|
+
}, {
|
42
|
+
name: 'Year 2018',
|
43
|
+
data: [1276, 1007, 4561, 746]
|
44
|
+
}],
|
45
|
+
} %>
|
46
|
+
|
47
|
+
<%= pb_rails("pb_bar_graph", props: {options: chart_options}) %>
|