Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可调整大小的窗口和一个图表,它由 11 行不同的值组成,范围从 0 到 1000。我会用什么数学来计算这个?
我希望数据范围从 0 到 1000,使其等于屏幕上的 0-1000 像素。但是,如果我将窗口大小调整为 640 / 480,则图表只会调整得不那么详细。
这是一个简单的比例:如果 640 像素条表示 1000 的值,则 Y 的值将表示 640 * Y / 1000 像素条。
您没有指定编程语言。 在 HTML 中,您可以将任何内容设置为 %,因此您可以将大小计算为最大值的 % - 即 550(最大 1000 个)= 55% 如果您使用 % size,它将自动根据屏幕/窗口大小进行调整。
如果您指定您选择的编程语言,我们可能会为您提供更多帮助