rust_xlsxwriter 0.99.1

A Rust library for writing Excel 2007 xlsx files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT OR Apache-2.0
//
// Copyright 2022-2026, John McNamara, jmcnamara@cpan.org

//! The following example demonstrates creating a new chart range.
//!
use rust_xlsxwriter::ChartRange;

#[allow(unused_variables)]
fn main() {
    // Same as "Sheet1!$A$1:$A$5".
    let range = ChartRange::new_from_range("Sheet1", 0, 0, 4, 0);
}