You develop an interactive scalable vector graphic (SVG) application.
You write the following code (Line numbers are included for reference only.):
You need to increase the size of the circle by 50 percent.
Which code segment should you insert at line 02?

A.
Option A
B.
Option B
C.
Option C
D.
Option D
Confirm
function zoomIn(){
var myGraphic = document.getElementById(“myGraphic”);
myGraphic.setAttribute(“currentScale”,1.5);
}
Work in IE
0
0
https://jsfiddle.net/6z4j0Lxt/
0
0