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
//! Polar coordinate plot types
//!
//! Plots using polar coordinates with configurable axis labels.
//!
//! # Plot Types
//!
//! - **Polar plots**: Line/scatter plots in polar coordinates with angular (θ)
//! and radial (r) axis labels
//! - **Radar charts**: Spider/star charts for multivariate data with category labels
//!
//! # Label Configuration
//!
//! Both plot types support configurable axis labels:
//!
//! ```rust,ignore
//! use ruviz::plots::polar::{PolarPlotConfig, RadarConfig};
//!
//! // Polar plot with angular labels (0°, 30°, 60°, etc.)
//! let polar_config = PolarPlotConfig::new()
//! .show_theta_labels(true)
//! .show_r_labels(true)
//! .label_font_size(10.0);
//!
//! // Radar chart with category labels
//! let radar_config = RadarConfig::new()
//! .labels(vec!["A", "B", "C"].into_iter().map(String::from).collect())
//! .show_axis_labels(true)
//! .label_font_size(11.0);
//! ```
//!
//! # Trait-Based API
//!
//! Polar plots implement the core plot traits:
//! - [`crate::plots::PlotCompute`]: Data transformation
//! - [`crate::plots::PlotData`]: Common data interface
//! - [`crate::plots::PlotRender`]: Rendering capability
pub use ;
pub use ;