1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
//! Legend positioning and layout configuration for pie charts.
//!
//! This module provides types and functionality for controlling where and how
//! the legend is displayed relative to the pie chart.
//!
//! # Examples
//!
//! ```
//! use tui_piechart::{PieChart, PieSlice, LegendPosition, LegendLayout, LegendAlignment};
//! use ratatui::style::Color;
//!
//! let slices = vec![
//! PieSlice::new("Rust", 45.0, Color::Red),
//! PieSlice::new("Go", 30.0, Color::Blue),
//! PieSlice::new("Python", 25.0, Color::Green),
//! ];
//!
//! // Position legend on the left with horizontal layout and center alignment
//! let chart = PieChart::new(slices)
//! .legend_position(LegendPosition::Left)
//! .legend_layout(LegendLayout::Horizontal)
//! .legend_alignment(LegendAlignment::Center);
//! ```
/// Position of the legend relative to the pie chart.
///
/// Controls where the legend appears in relation to the pie chart visualization.
/// The legend can be positioned on any of the four sides: right (default), left,
/// top, or bottom.
///
/// # Examples
///
/// ```
/// use tui_piechart::{PieChart, PieSlice, LegendPosition};
/// use ratatui::style::Color;
///
/// let slices = vec![PieSlice::new("Rust", 45.0, Color::Red)];
///
/// // Position legend on the left side
/// let chart = PieChart::new(slices)
/// .legend_position(LegendPosition::Left);
/// ```
///
/// # Layout Impact
///
/// The legend position affects how space is allocated:
/// - **Right/Left**: Legend takes a portion of horizontal space
/// - **Top/Bottom**: Legend takes a portion of vertical space
///
/// The chart automatically adjusts its size to accommodate the legend.
/// Layout mode for the legend.
///
/// Controls how legend items are arranged: either stacked vertically in a column
/// (default) or arranged horizontally in a single row.
///
/// # Examples
///
/// ```
/// use tui_piechart::{PieChart, PieSlice, LegendLayout, LegendPosition};
/// use ratatui::style::Color;
///
/// let slices = vec![
/// PieSlice::new("Rust", 45.0, Color::Red),
/// PieSlice::new("Go", 30.0, Color::Blue),
/// ];
///
/// // Use horizontal layout with legend at top
/// let chart = PieChart::new(slices)
/// .legend_position(LegendPosition::Top)
/// .legend_layout(LegendLayout::Horizontal);
/// ```
///
/// # Layout Considerations
///
/// - **Vertical**: Each legend item takes one line. Best for detailed legends
/// with longer labels or when vertical space is available.
/// - **Horizontal**: All legend items on one line. Best for compact displays
/// or when used with Top/Bottom positions.
/// Alignment of legend items within the legend area.
///
/// Controls how legend items are aligned horizontally within their allocated space.
/// This is particularly useful in grid layouts or when the legend area is wider
/// than the legend content.
///
/// # Examples
///
/// ```
/// use tui_piechart::{PieChart, PieSlice, LegendAlignment};
/// use ratatui::style::Color;
///
/// let slices = vec![
/// PieSlice::new("Rust", 45.0, Color::Red),
/// PieSlice::new("Go", 30.0, Color::Blue),
/// ];
///
/// // Center-align legend items
/// let chart = PieChart::new(slices)
/// .legend_alignment(LegendAlignment::Center);
/// ```
///
/// # Layout Considerations
///
/// - **Left**: Legend items start from the left edge (default)
/// - **Center**: Legend items are centered within the legend area
/// - **Right**: Legend items align to the right edge