Create a multi-pump multi-speed curve.

Namespace: configuration_services
Assembly: configuration_services (in configuration_services.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
byte[] graph_multipump_multispeed(
	uint list_id,
	uint pump_state_id,
	uint width,
	uint height,
	List<uint> speeds,
	uint pump_count,
	GraphOptions graph_settings,
	string locale
)
Visual Basic
Function graph_multipump_multispeed ( _
	list_id As UInteger, _
	pump_state_id As UInteger, _
	width As UInteger, _
	height As UInteger, _
	speeds As List(Of UInteger), _
	pump_count As UInteger, _
	graph_settings As GraphOptions, _
	locale As String _
) As Byte()
Visual C++
array<unsigned char>^ graph_multipump_multispeed(
	unsigned int list_id, 
	unsigned int pump_state_id, 
	unsigned int width, 
	unsigned int height, 
	List<unsigned int>^ speeds, 
	unsigned int pump_count, 
	GraphOptions^ graph_settings, 
	String^ locale
)

Parameters

list_id
Type: System..::..UInt32
The id for the selection list in which the pump resides.
pump_state_id
Type: System..::..UInt32
PumpStateID column from get_list(UInt32) or return value from add_pump(UInt32, Int32, Guid).
width
Type: System..::..UInt32
width in pixels
height
Type: System..::..UInt32
height in pixels
speeds
Type: System.Collections.Generic..::..List<(Of <(<'UInt32>)>)>
Set of speeds for which the user would like to draw curves. (1 curve per speed that is within the pump's min and max speeds.)
pump_count
Type: System..::..UInt32
Number of parallel pums
graph_settings
Type: PumpFloWeb.SelectLogic.Graph..::..GraphOptions
locale
Type: System..::..String
standard locale string like "en" or "fr-ca." Specifies desired localization for returned data

Return Value

See Also