Returns the pair of URIs needed by xlsx_drawing to embed a chart into a sheet, keeping the relationship type and graphic URI consistent so Excel opens the file without repair.
Usage
ooxml_chart_uris(kind = c("drawingml", "chartex"))Examples
ooxml_chart_uris("drawingml")
#> $rel_type
#> [1] "http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart"
#>
#> $graphic_uri
#> [1] "http://schemas.openxmlformats.org/drawingml/2006/chart"
#>
ooxml_chart_uris("chartex")
#> $rel_type
#> [1] "http://schemas.microsoft.com/office/2014/relationships/chartEx"
#>
#> $graphic_uri
#> [1] "http://schemas.microsoft.com/office/drawing/2014/chartex"
#>
