search for: activechart

Displaying 2 results from an estimated 2 matches for "activechart".

2009 Jun 27
1
Creating Excel-Charts via RDCOMClient
...erSmoothNoMarkers <- 73 ex <- COMCreate("Excel.Application") wb <- ex[["Workbooks"]]$Add() sh <- ex$ActiveSheet() ex[["Visible"]] <- TRUE r <- sh$Range("A1:D1") r[["Value"]] <- c(1:4) ch <- ex$Charts() ch$Add() ac <- ex$ActiveChart() ac[["ChartType"]] <- xlXYScatterSmoothNoMarkers ac$Location(Where=xlLocationAsObject, Name="Tabelle1") ac$SeriesCollection()$NewSeries() ac$SeriesCollection(1)[["XValues"]] <- r ac$SeriesCollection(1)[["Values"]] <- r #-----------------------------...
2006 Apr 18
5
3D pie
Hi all, Is there a way to draw 3D pie with R (like excel does)? I know how to do it in 2D, just by using pie(something)... I know it isn't the best way to represent data, but people are sometimes more interested by the look and feel than by the accuracy of the results... If there is no way, have you another suggestion ? (i already use dotchart instead of pie) Thks to all of