- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用一个在图表上创建标记的开源图表库。 (动态数据显示)我正在创建的标记是使用 Rect 对象创建的。我注意到 System.Windows.Shapes 中的所有形状都有一个 ToolTip 属性,但 System.Windows.Rect 没有。当鼠标悬停在标记上时,我想弹出一个工具提示,告诉用户标记的价格值。我正在考虑在鼠标进入矩形占据的区域时创建并弹出工具提示,但我不知道考虑到矩形将被图表缩放/平移的可能性有多大。还有其他建议吗?
这是我正在创建的标记的代码(来自 Felice Pollano 博客)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Shapes;
using System.Windows.Controls;
using System.Text;
using System.Windows;
using System.Windows.Media;
namespace Microsoft.Research.DynamicDataDisplay.PointMarkers
{
public class CandleStickPointMarker:ShapePointMarker,ITransformAware
{
public double CandlestickWidth
{
get { return (double)GetValue(CandlestickWidthProperty); }
set { SetValue(CandlestickWidthProperty, value); }
}
public static readonly DependencyProperty CandlestickWidthProperty =
DependencyProperty.Register("CandlestickWidth", typeof(double), typeof(CandleStickPointMarker), new UIPropertyMetadata(4.0));
public double CandlestickStrokeWidth
{
get { return (double)GetValue(CandlestickStrokeWidthProperty); }
set { SetValue(CandlestickStrokeWidthProperty, value); }
}
public static readonly DependencyProperty CandlestickStrokeWidthProperty =
DependencyProperty.Register("CandlestickStrokeWidth", typeof(double), typeof(CandleStickPointMarker), new UIPropertyMetadata(1.0));
public Brush WhiteCandleFill
{
get { return (Brush)GetValue(WhiteCandleFillProperty); }
set { SetValue(WhiteCandleFillProperty, value); }
}
public static readonly DependencyProperty WhiteCandleFillProperty =
DependencyProperty.Register("WhiteCandleFill", typeof(Brush), typeof(CandleStickPointMarker), new UIPropertyMetadata(Brushes.White));
public Brush WhiteCandleStroke
{
get { return (Brush)GetValue(WhiteCandleStrokeProperty); }
set { SetValue(WhiteCandleStrokeProperty, value); }
}
public static readonly DependencyProperty WhiteCandleStrokeProperty =
DependencyProperty.Register("WhiteCandleStroke", typeof(Brush), typeof(CandleStickPointMarker), new UIPropertyMetadata(Brushes.DarkGray));
public Brush BlackCandleFill
{
get { return (Brush)GetValue(BlackCandleFillProperty); }
set { SetValue(BlackCandleFillProperty, value); }
}
public static readonly DependencyProperty BlackCandleFillProperty =
DependencyProperty.Register("BlackCandleFill", typeof(Brush), typeof(CandleStickPointMarker), new UIPropertyMetadata(Brushes.Black));
public Brush BlackCandleStroke
{
get { return (Brush)GetValue(BlackCandleStrokeProperty); }
set { SetValue(BlackCandleStrokeProperty, value); }
}
public static readonly DependencyProperty BlackCandleStrokeProperty =
DependencyProperty.Register("BlackCandleStroke", typeof(Brush), typeof(CandleStickPointMarker), new UIPropertyMetadata(Brushes.Gray));
public CoordinateTransform Transform { get; set; }
public double High
{
get { return (double)GetValue(HighProperty); }
set { SetValue(HighProperty, value); }
}
public static readonly DependencyProperty HighProperty =
DependencyProperty.Register("High", typeof(double), typeof(CandleStickPointMarker), new UIPropertyMetadata(0.0));
public double Low
{
get { return (double)GetValue(LowProperty); }
set { SetValue(LowProperty, value); }
}
public static readonly DependencyProperty LowProperty =
DependencyProperty.Register("Low", typeof(double), typeof(CandleStickPointMarker), new UIPropertyMetadata(0.0));
public double Open
{
get { return (double)GetValue(OpenProperty); }
set { SetValue(OpenProperty, value); }
}
public static readonly DependencyProperty OpenProperty =
DependencyProperty.Register("Open", typeof(double), typeof(CandleStickPointMarker), new UIPropertyMetadata(0.0));
public override void Render(System.Windows.Media.DrawingContext dc, Point screenPoint)
{
Point screenOpen = GetScreenPoint(Open,screenPoint.X);
Point screenHigh = GetScreenPoint(High,screenPoint.X);
Point screenLow = GetScreenPoint(Low, screenPoint.X);
//screenPoint is the CLOSE by gentleman agreement.
var close = screenPoint.ScreenToData(Transform).Y;
Pen strokePen;
if (Open >= close) // black
{
strokePen = new Pen(BlackCandleStroke, CandlestickStrokeWidth);
var h = -screenOpen.Y + screenPoint.Y;
Rect blkRect = new Rect(screenPoint.X - CandlestickWidth / 2, screenOpen.Y, CandlestickWidth, h);
dc.DrawRectangle(BlackCandleFill,strokePen, blkRect);
dc.DrawLine(strokePen, screenLow, screenPoint);
dc.DrawLine(strokePen, screenHigh, screenOpen);
}
else // white
{
strokePen=new Pen(WhiteCandleStroke, CandlestickStrokeWidth);
var h = screenOpen.Y - screenPoint.Y;
Rect whtRect = new Rect(screenPoint.X - CandlestickWidth / 2, screenPoint.Y, CandlestickWidth, h);
dc.DrawRectangle(WhiteCandleFill, strokePen, whtRect);
dc.DrawLine(strokePen, screenLow, screenOpen);
dc.DrawLine(strokePen, screenHigh, screenPoint);
}
}
private Point GetScreenPoint(double Open,double screenX)
{
Point screen = new Point(0, Open);
return new Point(screenX,screen.DataToScreen(Transform).Y);
}
}
最佳答案
我不知道这是否对您有很大帮助,但我想烛台标记应该类似于矩形标记。下面的代码展示了我如何使用 Polygon 类在 D3 中创建一个矩形标记(实际上是一个正方形),方法与 CircleElementPointMarker 类似,并且工具提示功能有效。
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Shapes;
using System.Windows.Media;
namespace Microsoft.Research.DynamicDataDisplay.PointMarkers
{
/// <summary>Adds Rectangle element at every point of graph</summary>
public class RectangleElementPointMarker : ShapeElementPointMarker
{
Polygon Rectangle;
public override UIElement CreateMarker()
{
Rectangle = new Polygon();
Rectangle.Stroke = (Pen != null) ? Pen.Brush : Brushes.White;
Rectangle.StrokeThickness = (Pen != null) ? Pen.Thickness : 0;
Rectangle.Fill = Fill;
Rectangle.HorizontalAlignment = HorizontalAlignment.Center;
Rectangle.VerticalAlignment = VerticalAlignment.Center;
Rectangle.Width = Size;
Rectangle.Height = Size;
Point Point1 = new Point(-Rectangle.Width / 2, -Rectangle.Height / 2);
Point Point2 = new Point(-Rectangle.Width / 2, Rectangle.Height / 2);
Point Point3 = new Point(Rectangle.Width / 2, Rectangle.Height / 2);
Point Point4 = new Point(Rectangle.Width / 2, -Rectangle.Height / 2);
PointCollection myPointCollection = new PointCollection();
myPointCollection.Add(Point1);
myPointCollection.Add(Point2);
myPointCollection.Add(Point3);
myPointCollection.Add(Point4);
Rectangle.Points = myPointCollection;
if (!String.IsNullOrEmpty(ToolTipText))
{
ToolTip tt = new ToolTip();
tt.Content = ToolTipText;
Rectangle.ToolTip = tt;
}
return Rectangle;
}
public override void SetPosition(UIElement marker, Point screenPoint)
{
Canvas.SetLeft(marker, screenPoint.X - Size / 2);
Canvas.SetTop(marker, screenPoint.Y - Size / 2);
}
}
}
代码是在 .NET 4.0, VS2010 上编译的
关于c# - 在 Rect 对象上创建 WPF 工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13055022/
好的,所以我有一个自定义的 rect 函数。自定义rect如下: typedef struct tagRECTEx{ // long left; // long top; // long right;
我在 Rectangles 上找到了这个很棒的数学运算文件: https://gist.github.com/Noitidart/90ea1ebd30156df9ef530c6a9a1b6ea7 及其
在我的 onDraw 中,我拥有构建整个 View 所需的所有代码,但我如何检测我是否只想执行部分重绘。我想应该通过调用 canvas.invalidate(Rect rect); 来触发部分重绘。正
我对以下游戏 map 有疑问: 我想把所有的陆地区域(黄色附近)保存在一个数组中,这样计算机以后就知道用户的点击是在水面上(鼠标指针的x/y坐标不在数组中)还是在国内(x/y 坐标光标不在数组中)。我
我尝试制作一个简单的可视化列,其中矩形的高度由比例确定: var heightScale = d3.scaleLinear() .domain([150,2500]) .range([
我在 WPF 中有一个小项目,我需要在其中交换 UIElement。类似于 iGoogle 的功能。 由于我发不了图片(信誉不够)我会用文字说明。我有一个这样定义的 3x3 网格: 0 1
这个问题已经有答案了: How do I detect collision in pygame? (5 个回答) 已关闭 6 个月前。 问候, 我在 pygame 中从事的项目似乎遇到了一些麻烦。对于
我正在使用: check = pygame.image.load("check.png") checkrect = check.get_rect() checkrect = checkrect.mov
我试图让我的玩家 rect 在侧面和底部与我的敌人 rect 碰撞,因此玩家 rect 不会抛出敌人的 rect 但我不知道为什么它一直将我传送到它根本不起作用 VIDEo platform.rec
这个问题已经有答案了: How do I get the snake to grow and chain the movement of the snake's body? (1 个回答) 已关闭 3
API 是否应该提供 Rect::contains(Point) 或 Point::is_inside(Rect) 或两者? 或 Math::contains(Point, Rect) 因为它是对称的
我在我的项目中使用 Konva.js,我特别需要在使用 Konva.Rect() 类定义的可拖动矩形内定义文本。有没有一种方法可以在不使用单独的 Konva.Text 的情况下实现这一点() 或 Ko
'annot' CGPDFDictionary 'Rect' 如何转换为 objective-c Rect: 最佳答案 Adobes PDF Spec状态: Rectangles are used t
我正在尝试在 UIView 中绘制一个字符串。 class ViewController: UIViewController { override func viewDidLoad() { s
我正在使用 D3 制作图表。我希望用户能够通过调整单列水平柱形图上堆叠条形的大小来输入他们的选择。 条形堆叠在一起,每个条形都有 .call(drag) 事件监听器。 此拖动事件返回错误。 var d
我刚刚在官方文档中浏览了 pygame 的 .rect 方法。 我们有2个案例, pygame.rect.move(arg1,arg2) 用于在屏幕上移动 .rect 对象 和 pygame.rect
所以我尝试使用实例为我的游戏进行碰撞检测。代码如下: class Paddle: def __init__(self, x, y, width, height, rect): self.x =
我是否正确使用了drawPixmap()? 本质上,我的目标是拍摄一张图 block 图像,然后用自定义图 block 图像替换单个图 block 。 我能够将两个图像都加载到屏幕上,但是当我调用 d
这个想法很简单:我有一个 SVG 路径和一个 Rect,我需要让路径穿过矩形,由此产生的“洞”应该是透明的。 这是 jsfiddle,其中包含一份它现在的样子: https://jsfiddle.ne
很抱歉问了一个菜鸟问题,但是有人能告诉我这两者之间的区别吗 cv:: Rect rect; int width = rect.width; int height = rect.height; 还有这个
我是一名优秀的程序员,十分优秀!