Home | History | Annotate | Download | only in scripts

Lines Matching refs:svg

837         let svgStr = '<svg xmlns="http://www.w3.org/2000/svg" \
840 </svg>';
842 this.svg = this.div.find('svg');
848 // Make the added nodes in the svg visible.
850 this.svg = this.div.find('svg');
858 this.svg.append(`<defs > <linearGradient id="background_gradient_${this.id}"
904 this.svg.append(`<g> <title>${title}</title> <rect x="${x}%" y="${y}" ox="${x}" \
920 this.svg.append(`<rect id="zoom_rect_${this.id}" style="display:none;stroke:rgb(0,0,0);" \
927 this.svg.append(`<clipPath id="info_clip_path_${this.id}"> \
938 this.svg.append(`<rect style="stroke:rgb(0,0,0);" rx="10" ry="10" \
969 this.svg.find('g').each(function(_, g) {
975 this.zoomStack = [this.svg.find('g').first().get(0)];
976 this.svg.find('g').css('cursor', 'pointer').click(zoom);
977 this.svg.find(`#zoom_rect_${this.id}`).css('cursor', 'pointer').click(unzoom);
978 this.svg.find(`#zoom_text_${this.id}`).css('cursor', 'pointer').click(unzoom);
984 thisObj.svg.find(`#zoom_rect_${thisObj.id}`).css('display', 'block');
985 thisObj.svg.find(`#zoom_text_${thisObj.id}`).css('display', 'block');
993 thisObj.svg.find(`#zoom_rect_${thisObj.id}`).css('display', 'none');
994 thisObj.svg.find(`#zoom_text_${thisObj.id}`).css('display', 'none');
1006 thisObj.svg.find('g').each(function(_, g) {
1036 this.svg.find('g').on('mouseenter', function() {
1048 thisObj.svg.find(`#info_text_${thisObj.id}`).text(methodAndInfo[0]);
1058 thisObj.svg.find(`#percent_text_${thisObj.id}`).text(percentage);