John McNamara

Results 362 comments of John McNamara

I have added support for Serde serialization in v0.57.0. See [Working with Serde](https://docs.rs/rust_xlsxwriter/0.57.0/rust_xlsxwriter/serializer/index.html) in the `rust_xlsxwriter` docs and the discussion thread #61. Some additional serialisation features and helpers will be...

> Do you have any plans regarding reaching version 1.0? I plan to release a 1.x.x version once the feature set is ~ 100% of the Python feature set. Based...

I have released `rust_xlsxwriter` v0.63.0 with support for embedding images into worksheets. See the [Embedded Images] example in the docs. This can be useful if you are building up a...

I have released `rust_xlsxwriter` v0.64.0 with support for sparklines. See the [Working with Sparklines](https://docs.rs/rust_xlsxwriter/latest/rust_xlsxwriter/sparkline/index.html) section in the docs. This is a somewhat niche feature and as far as I can...

> A +1 for low memory mode, in case such feedback is useful :) It is useful. :-)

I've added support for Excel data validations to `rust_xlsxwriter` v0.70.0. Data validation is a feature of Excel that allows you to restrict the data that a user enters in a...

I've added support for adding VBA Macros to `rust_xlsxwriter` using files extracted from Excel files. This isn't very useful and it is also a little kludgy but it is a...

I've added support for cell Notes (previously called Comments) in v0.72.0. See https://docs.rs/rust_xlsxwriter/latest/rust_xlsxwriter/struct.Note.html Here is an example: ```rust use rust_xlsxwriter::{Note, Workbook, XlsxError}; fn main() -> Result { // Create a...

I've uploaded version v0.74.0 of `rust_xlsxwriter` which adds methods to format cells separately from the data writing functions. In Excel the data in a worksheet cell is comprised of a...

> What's the status on `chart.combine()`? It is the next in line feature for Charts. I'll see if I can move it along in the next week or two.