Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
DESKTOP-U434MT0\hiro committed Apr 6, 2022
1 parent 86bbef1 commit 3a385ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/structs/chart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ pub struct Chart {
/// let chart = worksheet.get_chart_by_column_and_row(3, 1);
/// let chart = worksheet.get_chart_mut("C1");
/// let chart = worksheet.get_chart_by_column_and_row_mut(3, 1);
///
///
/// // Use this if there are multiple Charts in a given cell.
/// let charts = worksheet.get_charts("C1");
/// let charts = worksheet.get_charts_by_column_and_row(3, 1);
/// let charts = worksheet.get_charts_mut("C1");
/// let charts = worksheet.get_charts_by_column_and_row_mut(3, 1);
/// ```
///
///
/// ## Set Chart Title, Series Title, Horizonal Title and Vertical Title.
/// ![Result Image](https://github.com/MathNya/umya-spreadsheet/raw/master/images/chart/chart_title.png)
/// ```rust
Expand Down
2 changes: 1 addition & 1 deletion src/structs/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub struct Image {
/// let image = worksheet.get_image_by_column_and_row(3, 1);
/// let image = worksheet.get_image_mut("C1");
/// let image = worksheet.get_image_by_column_and_row_mut(3, 1);
///
///
/// // Use this if there are multiple Images in a given cell.
/// let images = worksheet.get_images("C1");
/// let images = worksheet.get_images_by_column_and_row(3, 1);
Expand Down

0 comments on commit 3a385ed

Please sign in to comment.