addLink(SVGAnnotation)
addLink()所属R语言包:SVGAnnotation
Add a hyperlink to an SVG element
SVG元素添加一个超链接
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This makes an SVG element "clickable" via a hyperlink which will view the URL.
这使得“点击”查看URL的超链接,这将通过一个SVG元素。
用法----------Usage----------
addLink(n, url, addArea = NA, css = getDefaultSVGCSS(), style = "link", silent = FALSE)
参数----------Arguments----------
参数:n
the XML/SVG node
XML / SVG的节点
参数:url
the target of the link
链接的目标
参数:addArea
a logical value indicating whether to create a new rectangle node as the area the link will be active and put the existing contents of n into the rectangle. The dimensions of the rectangle are calculated from the contents of n.
一个逻辑值,指明是否要创建一个新的矩形节点,作为该区域的链接将是积极和投入矩形n现有的内容。矩形的尺寸计算从n的内容。
参数:css
the CSS content (file or string) to add to the document if style is not an inlined CSS style but the name of a CSS class.
CSS内容(文件或字符串)添加到该文件,如果风格是不是内联CSS样式,但一个CSS类名。
参数:style
a character string giving the name of the CSS class to use for any new SVG element that might be added to represent the event area, i.e. if a rectangle is added to "enclose" text or a phrase. This can be be either a class name or an inline CSS specification of the form "name: value; name: value; ...". To remove any ambiguity about whether it is a class name or inine specfication of CSS values, one can use I to indicate it is a collection of CSS values, e.g. style = I("fill: red; stroke: orange;")
给予为代表的活动区域,也就是说,如果一个矩形添加“括”的文字或短语可能被添加到任何新的SVG元素的CSS类的名称,使用一个字符串。这可以是一个类的名称或内联CSS规范的形式“的名字:值名称:值; ......”。为了消除任何含糊之处,它是否是一个类的名称或CSS值inine specfication,可以使用I表明它是一个CSS值的集合,例如style = I("fill: red; stroke: orange;")
参数:silent
a logical controlling whether addCSS emits a warning if there is a directive to load the CSS file is already in the target document.
逻辑控制是否addCSS发出警告,如果有一个指令加载CSS文件已经在目标文件中。
值----------Value----------
The newly created link node, i.e. the <a xlink:href=".."> element. The return value is typically not important as the node has been added to the document.
新创建的连接节点,即<a xlink:href="..">元素。返回值通常是并不重要节点已被添加到该文件。
作者(S)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
addAxesLinks
addAxesLinks
举例----------Examples----------
doc = svgPlot(plot(1:10, main = "The SVGAnnotation Package"))
nodes = getAxesLabelNodes(doc)
addLink(nodes, c("http://ww.r-project.org",
"http://www.omegahat.org",
"http://www.omegahat.org/SVGAnnotation"))
nodes = getPlotPoints(doc)
addLink(nodes,
paste("http://ww.r-project.org", seq(along = nodes), sep =""))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|