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
// 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() {
    let range = ChartRange::new_from_string("Sheet1!$A$1:$A$5");
}