ppt-rs 0.2.14

Create, read, and update PowerPoint 2007+ (.pptx) files with rich formatting, bullet styles, themes, and templates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Chart creation support for PPTX generation
//!
//! Modular chart system:
//! - `types` - Chart type definitions
//! - `data` - Chart data structures (Series, Chart)
//! - `builder` - Fluent chart builder
//! - `xml` - XML generation for charts

mod types;
mod data;
mod builder;
pub mod xml;

pub use types::ChartType;
pub use data::{Chart, ChartSeries};
pub use builder::ChartBuilder;
pub use xml::{generate_chart_part_xml, generate_chart_ref_xml};
pub(crate) use crate::core::escape_xml;